From 3838462531ef0de68b5ce24c429a85f4b1d35a78 Mon Sep 17 00:00:00 2001 From: Moul Date: Mon, 25 Jan 2016 21:03:34 +0100 Subject: [PATCH] Fix ortho. --- package_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_checker.py b/package_checker.py index 739138e..1fe634f 100755 --- a/package_checker.py +++ b/package_checker.py @@ -56,7 +56,7 @@ def check_manifest(manifest): with open(manifest, encoding='utf-8') as data_file: manifest = json.loads(data_file.read()) print_right("Manifest syntax is good.") - except: print_wrong("There is a syntax (comma) issue in manifest.json. Can't do follwing tests."); return + except: print_wrong("There is a syntax (comma) issue in manifest.json. Can't do following tests."); return i, fields = 0, ("name", "id", "description", "url", "license", \ "maintainer", "multi_instance", "services", "arguments") while (i < len(fields)):