diff options
author | i5ar <i5ar@live.it> | 2019-05-07 19:51:20 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-05-07 19:51:20 +0200 |
commit | 58daf135286c03db1f3bb4225b471007dd994670 (patch) | |
tree | 030d627a0d697ed17f0c0c76dc73076e8fb1aec2 /plugins/django | |
parent | 81ed25610dd6a7de858c38fa5bfb1545ebfc46e0 (diff) | |
download | zsh-58daf135286c03db1f3bb4225b471007dd994670.tar.gz zsh-58daf135286c03db1f3bb4225b471007dd994670.tar.bz2 zsh-58daf135286c03db1f3bb4225b471007dd994670.zip |
django: fix typo in completion (#6233)
Diffstat (limited to 'plugins/django')
-rw-r--r-- | plugins/django/django.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/django/django.plugin.zsh b/plugins/django/django.plugin.zsh index 29a51d29d..86558ff2e 100644 --- a/plugins/django/django.plugin.zsh +++ b/plugins/django/django.plugin.zsh @@ -154,7 +154,7 @@ _managepy-makemessages(){ "--no-default-ignore[Don't ignore the common glob-style patterns 'CVS', '.*', '*~' and '*.pyc'.]" \ "--no-wrap[Don't break long message lines into several lines.]" \ "--no-location[Don't write '#: filename:line' lines.]" \ - '--no-obsolete[emove obsolete message strings.]' \ + '--no-obsolete[Remove obsolete message strings.]' \ '--keep-pot[Keep .pot file after making messages.]' \ $nul_args && ret=0 } |