summaryrefslogtreecommitdiffstats
path: root/ipalib/constants.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-02-12 02:10:12 -0700
committerRob Crittenden <rcritten@redhat.com>2009-02-17 16:03:10 -0500
commit4ab133c3cb8fa9a9aff2b7e5d1c53a0feb164f3f (patch)
tree5e1989c8c054b05876a86ed81ebb6dea6f66b033 /ipalib/constants.py
parente0fe7323187df205c0994cc3fa4e0ee0b6445788 (diff)
downloadfreeipa-4ab133c3cb8fa9a9aff2b7e5d1c53a0feb164f3f.tar.gz
freeipa-4ab133c3cb8fa9a9aff2b7e5d1c53a0feb164f3f.tar.xz
freeipa-4ab133c3cb8fa9a9aff2b7e5d1c53a0feb164f3f.zip
Implemented more elegant way for entire plugin module to be conditionally skipped; updated cert.py and ra.py modules to use this
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r--ipalib/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index ab35eb4bd..2bf3adaee 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -64,7 +64,7 @@ FORMAT_FILE = '\t'.join([
'%(process)d',
'%(threadName)s',
'%(levelname)s',
- '%(message)r', # Using %r for repr() so message is a single line
+ '%(message)s',
])