From a2cc167d6857d5ff684cc361bdf35ab587673953 Mon Sep 17 00:00:00 2001 From: Massimo DiPierro Date: Wed, 16 May 2012 18:23:18 -0500 Subject: [PATCH] disabled copied of logging.conf again, problem with python 2.5 --- VERSION | 2 +- gluon/widget.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index d35eebd7..54906232 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-05-16 16:52:05) dev +Version 2.00.0 (2012-05-16 18:23:15) dev diff --git a/gluon/widget.py b/gluon/widget.py index 2cab034e..8542b056 100644 --- a/gluon/widget.py +++ b/gluon/widget.py @@ -896,7 +896,7 @@ def start(cron=True): if hasattr(options,key): setattr(options,key,getattr(options2,key)) - if not os.path.exists('logging.conf') and \ + if False and not os.path.exists('logging.conf') and \ os.path.exists('logging.example.conf'): import shutil sys.stdout.write("Copying logging.conf.example to logging.conf ... ")