From a80ce38f80b88b41fe4f5fdb5dc9f1ee235890a6 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 19 May 2008 00:11:25 +0000 Subject: [PATCH] Set version info to release version 2.07 before branching. - Legacy-Id: 1175 --- ietf/__init__.py | 4 ++-- ietf/settings.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ietf/__init__.py b/ietf/__init__.py index e3923f64da..b7602a453e 100644 --- a/ietf/__init__.py +++ b/ietf/__init__.py @@ -1,9 +1,9 @@ # Copyright The IETF Trust 2007, All Rights Reserved -__version__ = "2.07-dev" +__version__ = "2.07" __date__ = "$Date$" -__rev__ = "$Rev:$ (dev) Latest release: Rev. 967 " +__rev__ = "$Rev:$" __id__ = "$Id$" diff --git a/ietf/settings.py b/ietf/settings.py index 84040e6caf..d5a71e2ace 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -12,7 +12,7 @@ BASE_DIR = os.path.dirname(os.path.abspath(__file__)) -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG ADMINS = ( @@ -146,7 +146,7 @@ # Valid values: # 'production', 'test', 'development' # Override this in settings_local.py if it's not true -SERVER_MODE = 'development' +SERVER_MODE = 'production' # The name of the method to use to invoke the test suite TEST_RUNNER = 'ietf.tests.run_tests'