Skip to content

Recreate OWLS-86115 work #2344

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 29, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update print statement to add parentheses to support python 3
  • Loading branch information
lennyphan committed Apr 27, 2021
commit e7b377fd0cee268a2c891b152da3688f3d03a300
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def readFile(self, path):
def getEnv(self, name):
val = os.getenv(name)
if val is None or val == "null":
print "SEVERE: Env var %s not set." % name
print("SEVERE: Env var %s not set." % name)
sys.exit(1)
return val

Expand Down