summaryrefslogtreecommitdiff
path: root/db.py
diff options
context:
space:
mode:
authorSylvain <syt@logilab.fr>2006-10-20 09:46:03 +0200
committerSylvain <syt@logilab.fr>2006-10-20 09:46:03 +0200
commit6dd8e6d68bc95ee67d36def536cdd5b0d81f66a6 (patch)
tree66f77f8c5723b2d8efb84a2df089f26bbca5deda /db.py
parent51ce31ebee48cedf52ca0f15438d67196dcb1254 (diff)
downloadlogilab-common-6dd8e6d68bc95ee67d36def536cdd5b0d81f66a6.tar.gz
remove password prompt option
Diffstat (limited to 'db.py')
-rw-r--r--db.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/db.py b/db.py
index e2ac46e..d609466 100644
--- a/db.py
+++ b/db.py
@@ -436,7 +436,7 @@ class _PGAdvFuncHelper(_GenericAdvFuncHelper):
def backup_command(self, dbname, dbhost, dbuser, backupfile):
"""return a command to backup the given database"""
- cmd = ['pg_dump -Fc -W']
+ cmd = ['pg_dump -Fc']
if dbhost:
cmd.append('--host=%s' % dbhost)
if dbuser: