From: Christopher Allan Webber Date: Tue, 26 Feb 2013 16:33:51 +0000 (-0600) Subject: Small PEP-8 compliance fix. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=67c7c81162c1114093d4588668d5ba4cf83cf902;p=mediagoblin.git Small PEP-8 compliance fix. This commit sponsored by Mats Sjöberg. Thanks! --- 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