tests/printenv.py
changeset 4659 7a7d4937272b
parent 4643 a39cec1d5cb8
child 7080 a6477aa893b8
--- a/tests/printenv.py	Thu Jun 21 00:34:14 2007 -0300
+++ b/tests/printenv.py	Thu Jun 21 09:25:49 2007 +0200
@@ -27,7 +27,7 @@
 
 # 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()