diff options
author | Andrew Browning <ayleph@thisshitistemp.com> | 2016-03-01 01:00:14 -0500 |
---|---|---|
committer | Andrew Browning <ayleph@thisshitistemp.com> | 2016-03-01 01:00:14 -0500 |
commit | 1db8690fe9dc625bc648e04493d075cad76689cc (patch) | |
tree | 110f0d01047720f57d52654804d53f8ade3554f5 | |
parent | d5084359852eb0c7d2a714103e26debe2a43bf61 (diff) | |
download | mediagoblin-1db8690fe9dc625bc648e04493d075cad76689cc.tar.lz mediagoblin-1db8690fe9dc625bc648e04493d075cad76689cc.tar.xz mediagoblin-1db8690fe9dc625bc648e04493d075cad76689cc.zip |
Fix #5433 - Typo in decorators
-rw-r--r-- | mediagoblin/decorators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/decorators.py b/mediagoblin/decorators.py index a2c49bcc..daeddb3f 100644 --- a/mediagoblin/decorators.py +++ b/mediagoblin/decorators.py @@ -416,7 +416,7 @@ def oauth_required(controller): ) if not valid: - error = "Invalid oauth prarameter." + error = "Invalid oauth parameter." return json_response({"error": error}, status=400) # Fill user if not already |