Fix code style

This commit is contained in:
Iacopo Spalletti 2017-01-02 00:09:34 +01:00
commit 6a4218eeea
No known key found for this signature in database
GPG key ID: BDCBC2EB289F60C6
6 changed files with 14 additions and 4 deletions

View file

@ -7,7 +7,9 @@ import os
from tempfile import mkdtemp
def gettext(s): return s
def gettext(s):
return s
HELPER_SETTINGS = dict(
ROOT_URLCONF='tests.test_utils.urls',
@ -138,5 +140,6 @@ def run():
from djangocms_helper import runner
runner.cms('djangocms_blog')
if __name__ == '__main__':
run()