Commit 5849bb3d by Scott Brown

Fixing bug where the file handle is not closed properly because the parentheses…

Fixing bug where the file handle is not closed properly because the parentheses are left off the call, telling Python to return a method but not call the method.
parent 616d749a
...@@ -107,7 +107,7 @@ def get_opt(options, k, defval=""): ...@@ -107,7 +107,7 @@ def get_opt(options, k, defval=""):
def _read_password(filename): def _read_password(filename):
f = open(filename, "rb") f = open(filename, "rb")
data = f.read() data = f.read()
f.close f.close()
data = data.strip() data = data.strip()
return data return data
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment