summaryrefslogtreecommitdiff
path: root/pyparsing/exceptions.py
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2020-05-13 14:13:52 -0500
committerptmcg <ptmcg@austin.rr.com>2020-05-13 14:13:52 -0500
commit75bac5978133342537b92cce6e518435d4a8cb57 (patch)
treed2561fa79f4a3a31babad55a66a8d9c1b164b5bf /pyparsing/exceptions.py
parent42e7022d549d0ded980fb51a57765fcf476954cf (diff)
downloadpyparsing-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.py2
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):