Fix logging argument

This commit is contained in:
Brian C. Lane 2018-08-07 09:24:11 -07:00
parent a6c3a82695
commit 7999ae3ee7
1 changed files with 1 additions and 1 deletions

View File

@ -1601,7 +1601,7 @@ def v0_api(api):
if not modules:
msg = "one of the requested modules does not exist: %s" % module_names
log.error("(v0_modules_info) %s" % msg)
log.error("(v0_modules_info) %s", msg)
return jsonify(status=False, errors=[msg]), 400
return jsonify(modules=modules)