diff --git a/dpaste/templates/dpaste/about.html b/dpaste/templates/dpaste/about.html index f313cd6..c7c3839 100644 --- a/dpaste/templates/dpaste/about.html +++ b/dpaste/templates/dpaste/about.html @@ -78,17 +78,6 @@

-

Imprint

- -

Address:

-

- Martin Mahner
- Lauterbacher Str. 4
- DE-18581 Putbus
- Germany -

- -

Jabber/E-Mail:

-

martin@mahner.org

+ {{ DPASTE_ABOUT_EXTRA }} {% endblock %} diff --git a/manage.py b/manage.py index bc248e2..74d1a10 100755 --- a/manage.py +++ b/manage.py @@ -5,8 +5,8 @@ import sys if __name__ == "__main__": # If a 'settings_local' file is present, use it try: - from dpaste import settings_local - settings_module = "dpaste.settings_local" + from dpaste.settings import local + settings_module = "dpaste.settings.local" except ImportError: settings_module = "dpaste.settings"