summaryrefslogtreecommitdiff
path: root/tests/test-json.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-json.py')
-rw-r--r--tests/test-json.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/test-json.py b/tests/test-json.py
index bffb88a03..0ec1cfc30 100644
--- a/tests/test-json.py
+++ b/tests/test-json.py
@@ -1,11 +1,11 @@
# Copyright (c) 2009, 2010 Nicira Networks.
-#
+#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
-#
+#
# http://www.apache.org/licenses/LICENSE-2.0
-#
+#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -18,6 +18,7 @@ import sys
import ovs.json
+
def print_json(json):
if type(json) in [str, unicode]:
print "error: %s" % json
@@ -27,6 +28,7 @@ def print_json(json):
sys.stdout.write("\n")
return True
+
def parse_multiple(stream):
buf = stream.read(4096)
ok = True
@@ -49,6 +51,7 @@ def parse_multiple(stream):
ok = False
return ok
+
def main(argv):
argv0 = argv[0]
@@ -88,5 +91,6 @@ def main(argv):
if not ok:
sys.exit(1)
+
if __name__ == '__main__':
main(sys.argv)