Merge pull request #149 from vincentjames501/master

Allowing arguments to be passed to _python
This commit is contained in:
Bruno 2014-04-30 15:14:51 -03:00
commit 0427854671

View File

@ -1,8 +1,8 @@
# Use python2 if found, otherwise fallback to python.
function _python
if which python2
python2
python2 $argv
else
python
python $argv
end
end