mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
[fix] too many %s in string formatting
This commit is contained in:
parent
0bbd47c090
commit
bb3f685c90
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ class ActionsMap(object):
|
||||||
fromlist=[func_name])
|
fromlist=[func_name])
|
||||||
func = getattr(mod, func_name)
|
func = getattr(mod, func_name)
|
||||||
except (AttributeError, ImportError):
|
except (AttributeError, ImportError):
|
||||||
logger.exception("unable to load function %s.%s.%s",
|
logger.exception("unable to load function %s.%s",
|
||||||
namespace, func_name)
|
namespace, func_name)
|
||||||
raise MoulinetteError(errno.EIO, m18n.g('error_see_log'))
|
raise MoulinetteError(errno.EIO, m18n.g('error_see_log'))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue