tests/printenv.py
changeset 4659 7a7d4937272b
parent 4643 a39cec1d5cb8
--- a/tests/printenv.py
+++ b/tests/printenv.py
@@ -27,7 +27,7 @@ if len(sys.argv) > 2:
 
 # variables with empty values may not exist on all platforms, filter
 # them now for portability sake.
-env = [k for k,v in os.environ.iteritems() 
+env = [k for k, v in os.environ.iteritems()
        if k.startswith("HG_") and v]
 env.sort()