Skip to content

Commit 7935926

Browse files
committed
Set version info and settings back to development mode
- Legacy-Id: 12498
1 parent 138c17e commit 7935926

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
@@ -4,13 +4,13 @@
44
import checks # pyflakes:ignore
55

66
# Don't add patch number here:
7-
__version__ = "6.39.1"
7+
__version__ = "6.39.2.dev0"
88

99
# set this to ".p1", ".p2", etc. after patching
1010
__patch__ = ""
1111

1212
__date__ = "$Date$"
1313

14-
__rev__ = "$Rev$"
14+
__rev__ = "$Rev$ (dev) Latest release: Rev. 12496 "
1515

1616
__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)