From fd50903c502a93ad8e35a8a748790d08baa11b98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Tue, 29 Oct 2013 13:36:06 +0100 Subject: [PATCH] Don't include '!' in disabled= when converting to new syntax --- fdroidserver/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index a05f1811..53021e9e 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -475,7 +475,7 @@ def parse_metadata(metafile, verbose=False): if parts[2].startswith('!'): # For backwards compatibility, handle old-style disabling, # including attempting to extract the commit from the message - thisbuild['disable'] = parts[2] + thisbuild['disable'] = parts[2][1:] commit = 'unknown - see disabled' index = parts[2].rfind('at ') if index != -1: