summaryrefslogtreecommitdiffstats
path: root/ngxtop/config_parser.py
diff options
context:
space:
mode:
authorJerome Leclanche <jerome@leclan.ch>2014-04-24 03:25:51 +0100
committerJerome Leclanche <jerome@leclan.ch>2014-04-24 03:25:51 +0100
commitfc6b8a308362f3fdbc459358a99cf1afe39b45d9 (patch)
treed4e0f6bc44f867dd3b2410e88802d561e304e663 /ngxtop/config_parser.py
parent3694d55b15f73b531d8c7951711799ffa3c7521a (diff)
Use relative imports. Fixes #33
Diffstat (limited to 'ngxtop/config_parser.py')
-rw-r--r--ngxtop/config_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ngxtop/config_parser.py b/ngxtop/config_parser.py
index b8e4804..f6999cf 100644
--- a/ngxtop/config_parser.py
+++ b/ngxtop/config_parser.py
@@ -8,7 +8,7 @@ import subprocess
from pyparsing import Literal, Word, ZeroOrMore, OneOrMore, Group, \
printables, quotedString, pythonStyleComment, removeQuotes
-from utils import choose_one, error_exit
+from .utils import choose_one, error_exit
REGEX_SPECIAL_CHARS = r'([\.\*\+\?\|\(\)\{\}\[\]])'