Michael Hall has proposed merging lp:~mhall119/loco-directory/686057 into 
lp:loco-directory.

Requested reviews:
  loco-directory-dev (loco-directory-dev)
Related bugs:
  #686057 Warn when python-tz is not installed
  https://bugs.launchpad.net/bugs/686057

-- 
https://code.launchpad.net/~mhall119/loco-directory/686057/+merge/42850
Your team loco-directory-dev is requested to review the proposed merge of 
lp:~mhall119/loco-directory/686057 into lp:loco-directory.
=== modified file 'loco_directory/settings.py'
--- loco_directory/settings.py	2010-11-20 17:25:50 +0000
+++ loco_directory/settings.py	2010-12-06 16:42:53 +0000
@@ -8,6 +8,11 @@
     print "You will need to run  ./manage.py init-ld  to make the LoCo Team Directory fully work."
     uw_import = False
 
+try:
+    import pytz
+except ImportError:
+    print "Missing library: pytz, Install package: python-tz"
+    
 PROJECT_PATH = os.path.dirname(os.path.abspath(__file__))
 
 DEBUG = True

_______________________________________________
Mailing list: https://launchpad.net/~loco-directory-dev
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~loco-directory-dev
More help   : https://help.launchpad.net/ListHelp

Reply via email to