Fix typo.

This commit is contained in:
Valentin Lorentz 2013-05-10 23:22:23 +02:00
parent 3b179ec304
commit cb6139e110

View File

@ -61,7 +61,7 @@ def loadPluginModule(name, ignoreDeprecation=False):
except:
sys.modules.pop(name, None)
for key in sys.modules:
if key.startwith(name + '.'):
if key.startswith(name + '.'):
sys.modules.pop(key)
raise
if 'deprecated' in module.__dict__ and module.deprecated: