Author: David Schneider <[email protected]>
Branch: 
Changeset: r690:7e94f1463473
Date: 2012-09-07 20:28 +0200
http://bitbucket.org/pypy/buildbot/changeset/7e94f1463473/

Log:    cleanup

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -251,8 +251,8 @@
                                        force_branch=force_branch))
     else:
         factory.addStep(ShellCmd(description="hg update",
-                                 command="hg update --clean",
-                                 workdir=workdir))
+                command=WithProperties("hg update --clean %(revision)s"),
+                workdir=workdir))
 
 
 def setup_steps(platform, factory, workdir=None,
@@ -268,6 +268,7 @@
               force_branch=force_branch)
     #
     factory.addStep(CheckGotRevision(workdir=workdir))
+
 def build_name(platform, jit, flags):
     if jit:
         kind = 'jit'
@@ -282,7 +283,6 @@
             kind = 'unknown'
     return 'pypy-c-' + kind + '-%(final_file_name)s-' + platform
 
-
 def add_translated_tests(factory, prefix, platform, app_tests, lib_python, 
pypyjit):
     if app_tests:
         if app_tests == True:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to