# HG changeset patch # User Brian Neal # Date 1326503239 21600 # Node ID cb298c8eb0399a26926cbd23e7fda0d45dfa6077 # Parent c092efc9ce71c19d0c8e30e8444988dd297dae0f Change fabfile to use hg instead of svn. diff -r c092efc9ce71 -r cb298c8eb039 fabfile.py --- 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():