diff fabfile.py @ 546:0d007c8c4851

Correct the hg pull command in the fabfile.
author Brian Neal <bgneal@gmail.com>
date Fri, 13 Jan 2012 19:09:08 -0600
parents cb298c8eb039
children 76ec83b73e18
line wrap: on
line diff
--- a/fabfile.py	Fri Jan 13 19:07:19 2012 -0600
+++ b/fabfile.py	Fri Jan 13 19:09:08 2012 -0600
@@ -6,11 +6,11 @@
 
 def update():
     """
-    Runs hg pull -U to pull changes and update to them.
+    Runs hg pull --update to pull changes and update to them.
 
     """
     with cd(PROJ_DIR):
-        run('hg pull -U')
+        run('hg pull --update')
 
 
 def collectstatic():