# HG changeset patch # User Brian Neal # Date 1326503348 21600 # Node ID 0d007c8c485155d6a3e6f32875ad13fce0b9fa21 # Parent cb298c8eb0399a26926cbd23e7fda0d45dfa6077 Correct the hg pull command in the fabfile. diff -r cb298c8eb039 -r 0d007c8c4851 fabfile.py --- 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():