[Greater-commits] r3584 - trunk/GREAT-ERModel/GreaterModel/Worker

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Thu Jul 14 16:57:16 CEST 2011


Author: aheinecke
Date: 2011-07-14 16:57:16 +0200 (Thu, 14 Jul 2011)
New Revision: 3584

Modified:
   trunk/GREAT-ERModel/GreaterModel/Worker/worker.py
Log:
Correctly use the representation of the tuple, as intended


Modified: trunk/GREAT-ERModel/GreaterModel/Worker/worker.py
===================================================================
--- trunk/GREAT-ERModel/GreaterModel/Worker/worker.py	2011-07-14 14:56:44 UTC (rev 3583)
+++ trunk/GREAT-ERModel/GreaterModel/Worker/worker.py	2011-07-14 14:57:16 UTC (rev 3584)
@@ -133,7 +133,7 @@
                 # An unknown status of the calculation. Return an error to
                 # the caller of the start_calculation method.
                 err = ValueError("Unknown calculation status %s"
-                                 % repr(status, progress))
+                                 % repr((status, progress)))
                 deferred.errback(err)
         except:
             log.err(Failure())



More information about the Greater-commits mailing list