aboutsummaryrefslogtreecommitdiff
path: root/def_PlainWords.py
diff options
context:
space:
mode:
Diffstat (limited to 'def_PlainWords.py')
-rwxr-xr-xdef_PlainWords.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/def_PlainWords.py b/def_PlainWords.py
index ebbe38b..eafe2fc 100755
--- a/def_PlainWords.py
+++ b/def_PlainWords.py
@@ -7,7 +7,6 @@ from os.path import basename, splitext
from railroad import *
Diagram(
- Start("complex"),
NonTerminal("PRINTABLES"),
Choice(0,
OneOrMore(
@@ -16,6 +15,6 @@ Diagram(
),
Skip()
),
- End("complex")
+ type="complex"
).writeStandalone(
open(splitext(basename(__file__))[0] + ".svg", "w").write)