mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-02 15:44:06 +01:00
Changed a %s to a %r.
This commit is contained in:
parent
69f8c40119
commit
942d67cc21
@ -80,7 +80,7 @@ def loadPluginModule(name, ignoreDeprecation=False):
|
||||
if ignoreDeprecation:
|
||||
log.warning('Deprecated plugin loaded: %s', name)
|
||||
else:
|
||||
raise Deprecated, 'Attempted to load deprecated plugin %s' % name
|
||||
raise Deprecated, 'Attempted to load deprecated plugin %r' % name
|
||||
if module.__name__ in sys.modules:
|
||||
sys.modules[module.__name__] = module
|
||||
linecache.checkcache()
|
||||
|
Loading…
Reference in New Issue
Block a user