| commit | 1b3c04b510c875fd3e31d13b73e76d3702bf99a0 | [log] [tgz] |
|---|---|---|
| author | Armin Rigo <arigo@tunes.org> | Fri Oct 24 17:15:29 2003 +0000 |
| committer | Armin Rigo <arigo@tunes.org> | Fri Oct 24 17:15:29 2003 +0000 |
| tree | a4ec44cdead6cbf3a576f8f8800d1222ba1b37ec | |
| parent | 4894c306266b5fb3a6cf8429cbb6bc31d3e23e4e [diff] |
Fixed bug introduced in revision 1.27
diff --git a/Lib/unittest.py b/Lib/unittest.py index 06aee9a..d305d95 100644 --- a/Lib/unittest.py +++ b/Lib/unittest.py
@@ -504,7 +504,7 @@ except ImportError: del parts_copy[-1] if not parts_copy: raise - parts = parts[1:] + parts = parts[1:] obj = module for part in parts: parent, obj = obj, getattr(obj, part)