From 40fac7a283d3d054af40c03cc15c97e8813983c3 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sun, 7 Jun 2020 12:08:35 +0000 Subject: [PATCH] Set version info and settings back to development mode - Legacy-Id: 17929 --- 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 4d97d9496..8aaeb6827 100644 --- a/ietf/__init__.py +++ b/ietf/__init__.py @@ -5,13 +5,13 @@ from . import checks # pyflakes:ignore # Don't add patch number here: -__version__ = "7.2.0" +__version__ = "7.2.1.dev0" # set this to ".p1", ".p2", etc. after patching __patch__ = "" __date__ = "$Date$" -__rev__ = "$Rev$" +__rev__ = "$Rev$ (dev) Latest release: Rev. 17927 " __id__ = "$Id$" diff --git a/ietf/settings.py b/ietf/settings.py index 11ed2a8e6..ea0e052e5 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -30,13 +30,13 @@ sys.path.append(os.path.abspath(BASE_DIR + "/..")) from ietf import __version__ import debug -DEBUG = False +DEBUG = True debug.debug = DEBUG # Valid values: # 'production', 'test', 'development' # Override this in settings_local.py if it's not the desired setting: -SERVER_MODE = 'production' +SERVER_MODE = 'development' # Domain name of the IETF IETF_DOMAIN = 'ietf.org'