[pypy-commit] pypy inline-dict-ops: oops

fijal noreply at buildbot.pypy.org
Tue Jul 12 00:32:43 CEST 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: inline-dict-ops
Changeset: r45477:f65004e89b4d
Date: 2011-07-10 16:09 +0200
http://bitbucket.org/pypy/pypy/changeset/f65004e89b4d/

Log:	oops

diff --git a/pypy/rlib/debug.py b/pypy/rlib/debug.py
--- a/pypy/rlib/debug.py
+++ b/pypy/rlib/debug.py
@@ -3,7 +3,7 @@
 
 class DebugState(object):
     def __init__(self):
-        self.prefixes = os.environ.get('PYPYDEFAULTLOG', 'all').split(':')
+        self.prefixes = os.environ.get('PYPYDEFAULTLOG', 'all').split(',')
         if self.prefixes == ['']:
             self.prefixes = []
         self.categories = []


More information about the pypy-commit mailing list