forked from MirrorHub/synapse
Make sure we pass a tuple to string '%' formatting
This commit is contained in:
parent
4f37c0ea9d
commit
b5eb9124f7
1 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@ class BaseMediaResource(Resource):
|
|||
except:
|
||||
raise SynapseError(
|
||||
400,
|
||||
"Missing integer argument %r" % (arg_name),
|
||||
"Missing integer argument %r" % (arg_name,),
|
||||
Codes.UNKNOWN,
|
||||
)
|
||||
|
||||
|
@ -107,7 +107,7 @@ class BaseMediaResource(Resource):
|
|||
except:
|
||||
raise SynapseError(
|
||||
400,
|
||||
"Missing string argument %r" % (arg_name),
|
||||
"Missing string argument %r" % (arg_name,),
|
||||
Codes.UNKNOWN,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue