Fix Python 3 incompatibility.
authorJoe Wreschnig <joe.wreschnig@gmail.com>
Sat, 20 Mar 2010 07:27:01 +0000 (00:27 -0700)
committerJoe Wreschnig <joe.wreschnig@gmail.com>
Sat, 20 Mar 2010 07:27:01 +0000 (00:27 -0700)
README.txt
bulletml/parser.py

index 238cce1c49bee5bdf31f498f608c3fa9abaf0465..b64221ce566adabb3a0108a29843e1c988281af8 100644 (file)
@@ -24,6 +24,9 @@ respawn the bullet pattern, and Enter to restart it.
 
 Installing
 ----------
+BulletML requires Python 2.6 or later. It should work on Python 3. It
+has no dependencies outside the CPython standard library.
+
 $ ./setup.py build
 $ sudo ./setup.py install
 
index b2e078b739a5153596f91fbb0af1c59ffd4aad3b..86dfe3c8700c771728cfcdab60ff92953c6a278e 100644 (file)
@@ -774,7 +774,7 @@ class BulletML(object):
         else:
             try:
                 return yaml.load(source)
-            except Exception, exc:
+            except Exception as exc:
                 raise ParseError(str(exc))
 
     @classmethod