Fix _retrieve_cache check

This commit is contained in:
Daniel Hahler 2016-10-07 13:59:51 +02:00
parent aef9a07c6e
commit 954fecc06f
1 changed files with 1 additions and 1 deletions

View File

@ -454,7 +454,7 @@ _managepy_commands() {
typeset -a django_completion
if ( [[ ${(P)+cachename} -eq 0 ]] || _cache_invalid $cachename ) \
&& ! _retrieve_cache $cachename; then
|| ! _retrieve_cache $cachename; then
zle -M "Querying Django subcommands..."
local ret_djcomp
if _managepy_get_django_completion "" $((CURRENT-1)); then