[Python-checkins] distutils2: Fix wrong name (thanks pyflakes)
tarek.ziade
python-checkins at python.org
Sun Jan 30 10:43:57 CET 2011
tarek.ziade pushed cba732cdef62 to distutils2:
http://hg.python.org/distutils2/rev/cba732cdef62
changeset: 933:cba732cdef62
user: ?ric Araujo <merwok at netwok.org>
date: Sun Oct 31 15:25:59 2010 +0100
summary:
Fix wrong name (thanks pyflakes)
files:
distutils2/_backport/pkgutil.py
diff --git a/distutils2/_backport/pkgutil.py b/distutils2/_backport/pkgutil.py
--- a/distutils2/_backport/pkgutil.py
+++ b/distutils2/_backport/pkgutil.py
@@ -650,7 +650,7 @@
def clear_cache():
""" Clears the internal cache. """
- global _cache_name, _cache_name_egg, cache_path, _cache_path_egg, \
+ global _cache_name, _cache_name_egg, _cache_path, _cache_path_egg, \
_cache_generated, _cache_generated_egg
_cache_name = {}
--
Repository URL: http://hg.python.org/distutils2
More information about the Python-checkins
mailing list