aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2013-08-12 11:15:01 +0200
committerArmin Rigo <arigo@tunes.org>2013-08-12 11:15:01 +0200
commit7916ccb99e0f2aa0f8d78b7c580cda3e685eed7b (patch)
tree41ce619d7a6ec8539c753d231bff11e1f2d9b900 /dotviewer
parentmerge heads (diff)
downloadpypy-7916ccb99e0f2aa0f8d78b7c580cda3e685eed7b.tar.gz
pypy-7916ccb99e0f2aa0f8d78b7c580cda3e685eed7b.tar.bz2
pypy-7916ccb99e0f2aa0f8d78b7c580cda3e685eed7b.zip
Don't fall back to codespeak, which doesn't exist any more
Diffstat (limited to 'dotviewer')
-rw-r--r--dotviewer/graphparse.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/dotviewer/graphparse.py b/dotviewer/graphparse.py
index 6a1f5b6404..2a22d3259a 100644
--- a/dotviewer/graphparse.py
+++ b/dotviewer/graphparse.py
@@ -152,7 +152,8 @@ def parse_dot(graph_id, content, links={}, fixedfont=False):
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))