Merge pull request #6240 from fesplugas/devel

get rid of newline chars when reading password file
pull/6249/head
jctanner 12 years ago
commit a4428530b5

@ -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):

Loading…
Cancel
Save