From 2c210b1609bd12f67c52841785baa97ff3474eb4 Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Sun, 18 Sep 2011 15:10:11 +0200 Subject: [PATCH] Remove an unused import --- po/update.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/po/update.py b/po/update.py index 3b85d5b77..1662801b5 100755 --- a/po/update.py +++ b/po/update.py @@ -3,7 +3,6 @@ import glob import os.path import shutil -import sys sources = [] for root, dirs, files in os.walk(os.path.join('..', 'picard')): @@ -38,4 +37,3 @@ for po in glob.glob("*.po"): shutil.move("new.%s" % po, po) os.system("msgfmt --statistics -c -v -o %s %s" % (os.devnull, po)) print -