From ba05c786acbe9ef8fa20afe5a8c0b1a723280202 Mon Sep 17 00:00:00 2001 From: John Ford Date: Tue, 19 Feb 2013 10:24:16 -0800 Subject: [PATCH] bug 839298 - fix json file creation for git users r=ted --- toolkit/mozapps/installer/informulate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/mozapps/installer/informulate.py b/toolkit/mozapps/installer/informulate.py index 1799c683de88..6af43ac6857a 100644 --- a/toolkit/mozapps/installer/informulate.py +++ b/toolkit/mozapps/installer/informulate.py @@ -14,7 +14,7 @@ def parse_cmdline(args): contents = {} for arg in args: key, s, value = arg.partition("=") - if value == '': + if s == '': print "ERROR: Malformed command line key value pairing (%s)" % arg exit(1) contents[key.lower()] = value