diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2009-10-17 07:34:27 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2009-10-17 07:34:27 (GMT) |
commit | a3e97ad5bac9439f82c86a355775238655b5be87 (patch) | |
tree | e4f48f258688cb39ab733105db721678986057ea | |
parent | 2ee358eed358748496dcdc7ea3fe3f66e6e93531 (diff) | |
download | cpython-a3e97ad5bac9439f82c86a355775238655b5be87.zip cpython-a3e97ad5bac9439f82c86a355775238655b5be87.tar.gz cpython-a3e97ad5bac9439f82c86a355775238655b5be87.tar.bz2 |
Formatting tweak so that before and after values are vertically aligned
-rwxr-xr-x | Lib/test/regrtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 905e270..8b351d7 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -744,8 +744,8 @@ class saved_test_environment: name, self.testname)) if self.verbose > 1: print >>sys.stderr, ( - " Before: {}\n After: {} ".format( - original, current)) + " Before: {}\n After: {} ".format( + original, current)) # XXX (ncoghlan): for most resources (e.g. sys.path) identity # matters at least as much as value. For others (e.g. cwd), # identity is irrelevant. Should we add a mechanism to check |