From 5c36bdf56c41a1f605a10f658c804f2135ec818c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matjaz=CC=8C=20Horvat?= Date: Fri, 30 Oct 2015 11:23:07 +0100 Subject: [PATCH] Fix comm- repository update --- bin/mozilla-en-US.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/mozilla-en-US.py b/bin/mozilla-en-US.py index ecad72eb8..e4a797ad1 100644 --- a/bin/mozilla-en-US.py +++ b/bin/mozilla-en-US.py @@ -59,7 +59,8 @@ def pull(url, target): execute(['hg', 'revert', '--all', '--no-backup'], target) # Pull - code, output, error = execute(['hg', 'pull', '-u'], target) + code, output, error = execute(['hg', 'pull'], target) + code, output, error = execute(['hg', 'update', '-c'], target) if code == 0: print('Repository at ' + url + ' updated.')