From 75bac5978133342537b92cce6e518435d4a8cb57 Mon Sep 17 00:00:00 2001 From: ptmcg Date: Wed, 13 May 2020 14:13:52 -0500 Subject: Convert internal imports to relative imports, to support projects that vendor pyparsing --- pyparsing/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyparsing/exceptions.py') 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): -- cgit v1.2.1