Fix bug causing mysqldump to fail
This commit is contained in:
parent
c9277ef4c5
commit
122122234d
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ def db_delete(cursor, db):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def db_dump(host, user, password, db_name, target):
|
def db_dump(host, user, password, db_name, target):
|
||||||
res = os.system("/usr/bin/mysqldump -q -h "+host+"-u "+user+ " --password="+password+" "
|
res = os.system("/usr/bin/mysqldump -q -h "+host+" -u "+user+ " --password="+password+" "
|
||||||
+db_name+" > "
|
+db_name+" > "
|
||||||
+target)
|
+target)
|
||||||
return (res == 0)
|
return (res == 0)
|
||||||
|
|
Loading…
Reference in a new issue