Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-12 00:25:12 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-12 00:25:12 (GMT)
commit3f53a9cb4ebb92b8dc20790c9d7b92c5175fb673 (patch)
tree82b1688cfaffb73d8c7a11be1216cf6a220744a8
parent6d9c28ffdf4b1578721a96a0e43630a4d4df755c (diff)
Pass description to the right constructor
-rw-r--r--builders.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/builders.py b/builders.py
index 917613e..dc35e3c 100644
--- a/builders.py
+++ b/builders.py
@@ -95,9 +95,9 @@ def create_factory(config, env={}, full=False, distribute=False,
command = Interpolate("~/public_html/snapshots/upload-completed "
"%(prop:buildername)s %(prop:buildnumber)s")
- factory.addStep(MasterShellCommand(command=command),
- description="releasing snapshot",
- descriptionDone="release snapshot")
+ factory.addStep(MasterShellCommand(command=command,
+ description="releasing snapshot",
+ descriptionDone="release snapshot"))
return factory