merge stable
authorAlexandre Fayolle <alexandre.fayolle@logilab.fr>
Mon, 01 Feb 2010 17:53:02 +0100
branchstable
changeset 4418 4755ef8253cd
parent 4417 8cd447d11aed (diff)
parent 4415 df7e0550cd90 (current diff)
child 4422 c0f41f53f1c3
merge
--- a/server/sqlutils.py	Mon Feb 01 16:59:26 2010 +0100
+++ b/server/sqlutils.py	Mon Feb 01 17:53:02 2010 +0100
@@ -174,7 +174,7 @@
         cmd = self.dbhelper.backup_command(self.dbname, self.dbhost,
                                            self.dbuser, backupfile,
                                            keepownership=False)
-        if subprocess.call(cmd):
+        if subprocess.call(cmd, shell=isinstance(cmd, str)):
             raise Exception('Failed command: %s' % cmd)
 
     def restore_from_file(self, backupfile, confirm, drop=True):
@@ -183,7 +183,7 @@
                                                   self.encoding,
                                                   keepownership=False,
                                                   drop=drop):
-            if subprocess.call(cmd):
+            if subprocess.call(cmd, shell=isinstance(cmd, str)):
                 print '-> Failed command: %s' % cmd
                 if not confirm('Continue anyway?', default='n'):
                     raise Exception('Failed command: %s' % cmd)