Skip to content

Commit

Permalink
30960: Alexey Bezhan: compatibility issue with django completion
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Stephenson committed Jan 14, 2013
1 parent eac4352 commit 0969fb9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion ChangeLog
@@ -1,3 +1,8 @@
2013-01-14 Peter Stephenson <p.stephenson@samsung.com>

* 30960: Alexey Bezhan: Completion/Unix/Command/_django:
compatibility issue.

2013-01-10 Peter Stephenson <p.w.stephenson@ntlworld.com>

* 30958: Jeremy Mates: Completion/Unix/Command/_prove,
Expand Down Expand Up @@ -445,5 +450,5 @@

*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5785 $
* $Revision: 1.5786 $
*****************************************************
2 changes: 1 addition & 1 deletion Completion/Unix/Command/_django
Expand Up @@ -59,7 +59,7 @@ case $state in
)

for cmd in $(./manage.py --help 2>&1 >/dev/null | \
awk -vdrop=1 '{ if (!drop) print substr($0, 3) } /^Available subcommands/ { drop=0 }')
awk -v drop=1 '{ if (!drop) print substr($0, 3) } /^Available subcommands/ { drop=0 }')
do
if ! echo $subcommands | grep -qs "${cmd}:"
then
Expand Down

0 comments on commit 0969fb9

Please sign in to comment.