From 339b76e935823f22417c0d283a41b902ab085a39 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Tue, 13 Mar 2012 00:01:56 -0400 Subject: [PATCH] Fix fabfile --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 6e2fabc..91318dd 100644 --- a/fabfile.py +++ b/fabfile.py @@ -13,9 +13,9 @@ def deploy(m): try: local("hg commit -m '{}'".format(m)) - local('hg push') except: pass + local('hg push') with cd(env.site_path): run('hg pull -u')