Commit c0a66981 by Jeremy Bowman Committed by GitHub

Merge pull request #27 from edx/jmbowman/import_plugin_models

Include plugin models again
parents 00aadbb5 51b6401e
...@@ -29,7 +29,7 @@ package_data = dict( ...@@ -29,7 +29,7 @@ package_data = dict(
setup( setup(
name = "django-wiki", name = "django-wiki",
version="0.0.13", version="0.0.14",
author = "Benjamin Bach", author = "Benjamin Bach",
author_email = "benjamin@overtag.dk", author_email = "benjamin@overtag.dk",
description = ("A wiki system written for the Django framework."), description = ("A wiki system written for the Django framework."),
......
...@@ -5,8 +5,9 @@ from django.core.exceptions import ImproperlyConfigured ...@@ -5,8 +5,9 @@ from django.core.exceptions import ImproperlyConfigured
from six import string_types, text_type from six import string_types, text_type
# TODO: Don't use wildcards # TODO: Don't use wildcards
from article import * from .article import *
from urlpath import * from .pluginbase import *
from .urlpath import *
from django.utils.functional import lazy from django.utils.functional import lazy
# TODO: Should the below stuff be executed a more logical place? # TODO: Should the below stuff be executed a more logical place?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment