update for python3

This commit is contained in:
John Kleinschmidt
2019-11-19 16:05:55 -05:00
parent 0f4ebda10f
commit 349ccafa43

View File

@@ -48,7 +48,7 @@ def get_env_var(name):
# TODO Remove ATOM_SHELL_* fallback values
value = os.environ.get('ATOM_SHELL_' + name, '')
if value:
print 'Warning: Use $ELECTRON_' + name + ' instead of $ATOM_SHELL_' + name
print("Warning: Use $ELECTRON_" + name + " instead of $ATOM_SHELL_" + name)
return value
@@ -64,7 +64,7 @@ def s3_config():
def enable_verbose_mode():
print 'Running in verbose mode'
print("Running in verbose mode")
global verbose_mode
verbose_mode = True