Merge pull request #6240 from fesplugas/devel

get rid of newline chars when reading password file
This commit is contained in:
jctanner 2014-03-03 09:38:47 -05:00
commit a4428530b5

View file

@ -105,6 +105,8 @@ def _read_password(filename):
f = open(filename, "rb")
data = f.read()
f.close
# get rid of newline chars
data = data.strip()
return data
def execute_create(args, options, parser):