From: Daniel Martí Date: Tue, 13 Aug 2013 14:00:51 +0000 (+0200) Subject: Forgot to remove debugging prints X-Git-Tag: 0.1~457^2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a23fb2715535f3d2614135687187fc94ed24ef21;p=fdroidserver.git Forgot to remove debugging prints --- diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 4a188c08..36dc77ee 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -863,7 +863,6 @@ def description_html(lines,linkres): return ps.text_html def retrieve_string(xml_dir, string): - print string if not string.startswith('@string/'): return string.replace("\\'","'") string_search = re.compile(r'.*"'+string[8:]+'".*>([^<]+?)<.*').search @@ -894,7 +893,6 @@ def fetch_real_name(app_dir, flavour): app_found = False name = None for f in manifest_paths(app_dir, flavour): - print f if not f.endswith(".xml"): continue xml_dir = os.path.join(f[:-19], 'res', 'values')