diff options
author | Madhusudan.C.S | 2011-02-01 02:10:53 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2011-02-01 02:10:53 +0530 |
commit | da97ab575ca79f86eca5ee3685cd8dfaa00a6264 (patch) | |
tree | bac66259814939e49b9169120d1e51bb058b18e4 | |
parent | 733a9ef22a1c9479ee4d2debcfc92fe2d09a7aa5 (diff) | |
download | pytask-da97ab575ca79f86eca5ee3685cd8dfaa00a6264.tar.gz pytask-da97ab575ca79f86eca5ee3685cd8dfaa00a6264.tar.bz2 pytask-da97ab575ca79f86eca5ee3685cd8dfaa00a6264.zip |
Move the configuration module to the helpers package and adjust the imports.
-rwxr-xr-x | pytask/helpers/configuration.py (renamed from pytask/configuration.py) | 0 | ||||
-rwxr-xr-x | pytask/taskapp/context_processors.py | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/pytask/configuration.py b/pytask/helpers/configuration.py index d23d0af..d23d0af 100755 --- a/pytask/configuration.py +++ b/pytask/helpers/configuration.py diff --git a/pytask/taskapp/context_processors.py b/pytask/taskapp/context_processors.py index 79961de..6b4b9ef 100755 --- a/pytask/taskapp/context_processors.py +++ b/pytask/taskapp/context_processors.py @@ -7,7 +7,7 @@ __authors__ = [ ] -from pytask import configuration as config_settings +from pytask.helpers import configuration as config_settings def configuration(request): |