diff options
Diffstat (limited to 'examples/dictExample2.py')
-rw-r--r-- | examples/dictExample2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/dictExample2.py b/examples/dictExample2.py index 58162f7..fa1b866 100644 --- a/examples/dictExample2.py +++ b/examples/dictExample2.py @@ -6,7 +6,7 @@ #
# Copyright (c) 2004, Paul McGuire
#
-from pyparsing import Literal, Word, Group, Dict, ZeroOrMore, alphas, nums, delimitedList, pyparsing_common
+from pyparsing import Literal, Word, Group, Dict, ZeroOrMore, alphas, nums, delimitedList, pyparsing_common as ppc
testData = """
+-------+------+------+------+------+------+------+------+------+
@@ -21,7 +21,7 @@ testData = """ # define grammar for datatable
underline = Word("-=")
-number = pyparsing_common.integer
+number = ppc.integer
vert = Literal("|").suppress()
|