get rid of newline chars when reading password file

pull/6240/head
Francesc Esplugas 10 years ago
parent 6690c23439
commit 0fd5829f10

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