Browse Source

[Fix #297] Check for pythonz before returning

master
Sorin Ionescu 12 years ago
parent
commit
7d68d3ff52
  1. 12
      modules/python/init.zsh

12
modules/python/init.zsh

@ -6,8 +6,13 @@ @@ -6,8 +6,13 @@
# Sebastian Wiesner <lunaryorn@googlemail.com>
#
# Load pythonz into the shell session.
if [[ -s $HOME/.pythonz/bin/pythonz ]]; then
path=($HOME/.pythonz/bin $path)
fi
# Return if requirements are not found.
if (( ! $+commands[python] )); then
if (( ! $+commands[python] && ! $+commands[pythonz] )); then
return 1
fi
@ -33,11 +38,6 @@ if (( $+commands[virtualenvwrapper_lazy.sh] )); then @@ -33,11 +38,6 @@ if (( $+commands[virtualenvwrapper_lazy.sh] )); then
source "$commands[virtualenvwrapper_lazy.sh]"
fi
# Load pythonz into the shell session.
if [[ -s $HOME/.pythonz/bin/pythonz ]]; then
path=($HOME/.pythonz/bin $path)
fi
#
# Aliases
#

Loading…
Cancel
Save