Skip to content

Commit

Permalink
fixed checks for installed curl/egrep/sort/tar for py3. fixes #110
Browse files Browse the repository at this point in the history
  • Loading branch information
ekalinin committed Jan 18, 2015
1 parent 6d36c65 commit e8e91ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nodeenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,8 +795,8 @@ def main():

for exe in ('curl', 'egrep', 'sort', 'tar'):
if not is_installed(exe):
print 'Error: "%s" not installed.' % exe
print 'Please, install it via apt/yum/etc and try again.'
print ('Error: "%s" not installed.' % exe)
print ('Please, install it via apt/yum/etc and try again.')
return sys.exit(1)

opt, args = parse_args(check=False)
Expand Down

0 comments on commit e8e91ab

Please sign in to comment.