diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2004-02-15 16:43:20 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2004-02-15 16:43:20 (GMT) |
commit | 32d23c9264a44316b028f712bdc516fbddb0a752 (patch) | |
tree | 9e2216617797823d7b1626bd50d6f01af9f54e0e /Lib/modulefinder.py | |
parent | fa7b9d8255e2bb5705de82468ff5ff1dc001e5e9 (diff) | |
download | cpython-32d23c9264a44316b028f712bdc516fbddb0a752.zip cpython-32d23c9264a44316b028f712bdc516fbddb0a752.tar.gz cpython-32d23c9264a44316b028f712bdc516fbddb0a752.tar.bz2 |
Fix typo.
Diffstat (limited to 'Lib/modulefinder.py')
-rw-r--r-- | Lib/modulefinder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/modulefinder.py b/Lib/modulefinder.py index 07b260d..ded3125 100644 --- a/Lib/modulefinder.py +++ b/Lib/modulefinder.py @@ -62,7 +62,7 @@ class Module: self.starimports = {} def __repr__(self): - s = "Module(%r" % % (self.__name__,) + s = "Module(%r" % (self.__name__,) if self.__file__ is not None: s = s + ", %r" % (self.__file__,) if self.__path__ is not None: |