mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Make sure we pass a tuple to string '%' formatting
This commit is contained in:
parent
4f37c0ea9d
commit
b5eb9124f7
@ -93,7 +93,7 @@ class BaseMediaResource(Resource):
|
|||||||
except:
|
except:
|
||||||
raise SynapseError(
|
raise SynapseError(
|
||||||
400,
|
400,
|
||||||
"Missing integer argument %r" % (arg_name),
|
"Missing integer argument %r" % (arg_name,),
|
||||||
Codes.UNKNOWN,
|
Codes.UNKNOWN,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -107,7 +107,7 @@ class BaseMediaResource(Resource):
|
|||||||
except:
|
except:
|
||||||
raise SynapseError(
|
raise SynapseError(
|
||||||
400,
|
400,
|
||||||
"Missing string argument %r" % (arg_name),
|
"Missing string argument %r" % (arg_name,),
|
||||||
Codes.UNKNOWN,
|
Codes.UNKNOWN,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user