Make decorated functions actually return things
This commit is contained in:
pare
9acfb0d3d8
commit
3bf2299e7e
S'han modificat 1 arxius amb 1 adicions i 1 eliminacions
|
@ -49,7 +49,7 @@ def api_version(version):
|
||||||
raise MastodonVersionError("Specified version does not support this API endpoint (Available from " + version + ")")
|
raise MastodonVersionError("Specified version does not support this API endpoint (Available from " + version + ")")
|
||||||
elif patch > self.mastodon_patch:
|
elif patch > self.mastodon_patch:
|
||||||
raise MastodonVersionError("Specified version does not support this API endpoint (Available from " + version + ")")
|
raise MastodonVersionError("Specified version does not support this API endpoint (Available from " + version + ")")
|
||||||
function(self, *args, **kwargs)
|
return function(self, *args, **kwargs)
|
||||||
function.__doc__ = function.__doc__ + "\n\n *Minumum Mastodon version: " + version + "*"
|
function.__doc__ = function.__doc__ + "\n\n *Minumum Mastodon version: " + version + "*"
|
||||||
return decorate(function, wrapper)
|
return decorate(function, wrapper)
|
||||||
return api_min_version_decorator
|
return api_min_version_decorator
|
||||||
|
|
Loading…
Referencia en una nova incidència