diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-02-26 10:33:51 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-02-26 10:33:51 -0600 |
commit | 67c7c81162c1114093d4588668d5ba4cf83cf902 (patch) | |
tree | 0fb4da77ba5376153e51a5f00cb8dc18c232d61d /mediagoblin/decorators.py | |
parent | ab1f65e6d773cce591e8779d84d8429f7d21d519 (diff) | |
download | mediagoblin-67c7c81162c1114093d4588668d5ba4cf83cf902.tar.lz mediagoblin-67c7c81162c1114093d4588668d5ba4cf83cf902.tar.xz mediagoblin-67c7c81162c1114093d4588668d5ba4cf83cf902.zip |
Small PEP-8 compliance fix.
This commit sponsored by Mats Sjöberg. Thanks!
Diffstat (limited to 'mediagoblin/decorators.py')
-rw-r--r-- | mediagoblin/decorators.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mediagoblin/decorators.py b/mediagoblin/decorators.py index 42406b7d..85883c1a 100644 --- a/mediagoblin/decorators.py +++ b/mediagoblin/decorators.py @@ -126,9 +126,9 @@ def get_user_media_entry(controller): raise NotFound() media = MediaEntry.query.filter_by( - slug = request.matchdict['media'], - state = u'processed', - uploader = user.id).first() + slug=request.matchdict['media'], + state=u'processed', + uploader=user.id).first() if not media: # no media via slug? Grab it via object id |