diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2016-08-07 04:49:02 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2016-08-07 04:49:02 +0000 |
commit | 287206d0552841938a3b19344365e80bc0fa3f0b (patch) | |
tree | 80bc42976938e48192f0a7c99ed84f68ddb9a292 /src/pyparsing.py | |
parent | 374c17b68800388ec4cb76f2326519721b9ee1e3 (diff) | |
download | pyparsing-git-287206d0552841938a3b19344365e80bc0fa3f0b.tar.gz |
Fix typo in SkipTo docstring
Diffstat (limited to 'src/pyparsing.py')
-rw-r--r-- | src/pyparsing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pyparsing.py b/src/pyparsing.py index d2b1172..528593e 100644 --- a/src/pyparsing.py +++ b/src/pyparsing.py @@ -3880,7 +3880,7 @@ class SkipTo(ParseElementEnhance): + integer("days_open"))
for tkt in ticket_expr.searchString(report):
- print txt.dump()
+ print tkt.dump()
prints::
['101', 'Critical', 'Intermittent system crash', '6']
- days_open: 6
|