This commit is contained in:
Iacopo Spalletti 2016-06-06 00:05:14 +02:00
commit 52753924ee
No known key found for this signature in database
GPG key ID: BDCBC2EB289F60C6
17 changed files with 1030 additions and 422 deletions

View file

@ -125,5 +125,11 @@ def run():
from djangocms_helper import runner
runner.cms('djangocms_blog')
def setup():
import sys
from djangocms_helper import runner
runner.setup('djangocms_blog', sys.modules[__name__], use_cms=True)
if __name__ == '__main__':
run()