server/serverctl.py
changeset 2461 1f38b65cbd20
parent 2458 4d114865098f
child 2473 490f88fb99b6
--- a/server/serverctl.py	Thu Jul 23 17:15:05 2009 +0200
+++ b/server/serverctl.py	Fri Jul 24 09:25:15 2009 +0200
@@ -650,7 +650,7 @@
         import tempfile
         srcappid = pop_arg(args, 1, msg="No source application specified !")
         destappid = pop_arg(args, msg="No destination application specified !")
-        output = tempfile.mkstemp()
+        _, output = tempfile.mkstemp()
         if ':' in srcappid:
             host, srcappid = srcappid.split(':')
             _remote_dump(host, srcappid, output, self.config.sudo)