Skip to content
This repository was archived by the owner on Nov 19, 2018. It is now read-only.

Commit acec98f

Browse files
author
Kamil Sambor
committed
Fix wrong import
1 parent e26b824 commit acec98f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydot_ng/_dotparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ def graph_definition():
366366
edge_ = pyparsing.CaselessLiteral("edge")
367367

368368
# token definitions
369-
identifier = pyparsing.Word(pyparsing.alphapyparsing.nums + "_.").\
369+
identifier = pyparsing.Word(pyparsing.alphanums + "_.").\
370370
setName("identifier")
371371

372372
# dblpyparsing.QuotedString

0 commit comments

Comments
 (0)