diff -r 17f5d2069551 -r 7a7d4937272b tests/printenv.py --- 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()