Author: Armin Rigo <[email protected]>
Branch:
Changeset: r66085:f4d0526d45eb
Date: 2013-08-12 11:15 +0200
http://bitbucket.org/pypy/pypy/changeset/f4d0526d45eb/
Log: Don't fall back to codespeak, which doesn't exist any more
diff --git a/dotviewer/graphparse.py b/dotviewer/graphparse.py
--- a/dotviewer/graphparse.py
+++ b/dotviewer/graphparse.py
@@ -152,7 +152,8 @@
try:
plaincontent = dot2plain_graphviz(content, contenttype)
except PlainParseError, e:
- print e
- # failed, retry via codespeak
- plaincontent = dot2plain_codespeak(content, contenttype)
+ raise
+ ##print e
+ ### failed, retry via codespeak
+ ##plaincontent = dot2plain_codespeak(content, contenttype)
return list(parse_plain(graph_id, plaincontent, links, fixedfont))
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit