Skip to content

Commit 26b9641

Browse files
committed
Set version info and settings back to development mode
- Legacy-Id: 12025
1 parent 78aa83d commit 26b9641

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ietf/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
import checks # pyflakes:ignore
33

44
# Don't add patch number here:
5-
__version__ = "6.33.1"
5+
__version__ = "6.33.2.dev0"
66

77
# set this to ".p1", ".p2", etc. after patching
88
__patch__ = ""
99

1010
__date__ = "$Date$"
1111

12-
__rev__ = "$Rev$"
12+
__rev__ = "$Rev$ (dev) Latest release: Rev. 12023 "
1313

1414
__id__ = "$Id$"

ietf/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
from ietf import __version__
2121
import debug
2222

23-
DEBUG = False
23+
DEBUG = True
2424
TEMPLATE_DEBUG = DEBUG
2525
debug.debug = DEBUG
2626

2727
# Valid values:
2828
# 'production', 'test', 'development'
2929
# Override this in settings_local.py if it's not the desired setting:
30-
SERVER_MODE = 'production'
30+
SERVER_MODE = 'development'
3131

3232
# Domain name of the IETF
3333
IETF_DOMAIN = 'ietf.org'

0 commit comments

Comments
 (0)