diff fabfile.py @ 545:cb298c8eb039

Change fabfile to use hg instead of svn.
author Brian Neal <bgneal@gmail.com>
date Fri, 13 Jan 2012 19:07:19 -0600
parents 1f92a53db575
children 0d007c8c4851
line wrap: on
line diff
--- a/fabfile.py	Thu Jan 12 21:42:01 2012 -0600
+++ b/fabfile.py	Fri Jan 13 19:07:19 2012 -0600
@@ -6,11 +6,11 @@
 
 def update():
     """
-    Runs svn update.
+    Runs hg pull -U to pull changes and update to them.
 
     """
     with cd(PROJ_DIR):
-        run('svn up')
+        run('hg pull -U')
 
 
 def collectstatic():