diff options
author | ptmcg <ptmcg@austin.rr.com> | 2020-05-13 14:13:52 -0500 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2020-05-13 14:13:52 -0500 |
commit | 75bac5978133342537b92cce6e518435d4a8cb57 (patch) | |
tree | d2561fa79f4a3a31babad55a66a8d9c1b164b5bf /pyparsing/exceptions.py | |
parent | 42e7022d549d0ded980fb51a57765fcf476954cf (diff) | |
download | pyparsing-git-75bac5978133342537b92cce6e518435d4a8cb57.tar.gz |
Convert internal imports to relative imports, to support projects that vendor pyparsing
Diffstat (limited to 'pyparsing/exceptions.py')
-rw-r--r-- | pyparsing/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyparsing/exceptions.py b/pyparsing/exceptions.py index 362b4c1..51eed66 100644 --- a/pyparsing/exceptions.py +++ b/pyparsing/exceptions.py @@ -1,7 +1,7 @@ # exceptions.py import sys -from pyparsing.util import col, line, lineno +from .util import col, line, lineno class ParseBaseException(Exception): |