Move the configuration module to the helpers package and adjust the imports.
authorMadhusudan.C.S <madhusudancs@gmail.com>
Tue, 01 Feb 2011 02:10:53 +0530
changeset 537 f285333bc66d
parent 536 03164bb5b52d
child 538 478c7fc9a223
Move the configuration module to the helpers package and adjust the imports.
pytask/configuration.py
pytask/helpers/configuration.py
pytask/taskapp/context_processors.py
--- a/pytask/configuration.py	Tue Feb 01 02:09:27 2011 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-"""A configuration settings file for PyTask project.
-"""
-
-
-__authors__ = [
-    '"Madhusudan.C.S" <madhusudancs@fossee.in>',
-    ]
-
-
-TASK_CLAIM_ENABLED = False
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pytask/helpers/configuration.py	Tue Feb 01 02:10:53 2011 +0530
@@ -0,0 +1,10 @@
+"""A configuration settings file for PyTask project.
+"""
+
+
+__authors__ = [
+    '"Madhusudan.C.S" <madhusudancs@fossee.in>',
+    ]
+
+
+TASK_CLAIM_ENABLED = False
\ No newline at end of file
--- a/pytask/taskapp/context_processors.py	Tue Feb 01 02:09:27 2011 +0530
+++ b/pytask/taskapp/context_processors.py	Tue Feb 01 02:10:53 2011 +0530
@@ -7,7 +7,7 @@
     ]
 
 
-from pytask import configuration as config_settings
+from pytask.helpers import configuration as config_settings
 
 
 def configuration(request):