summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Slenders <jonathan@slenders.be>2018-05-20 19:07:22 +0200
committerJonathan Slenders <jonathan@slenders.be>2018-05-20 19:07:22 +0200
commit55199591a59e45f4f59768ab0219f345d6fb05bc (patch)
tree3d9171da608800c2bae816ee54fa7e08788d66eb
parentda0ae6e8c220e1a30b5494d7dabd85852d3b4ff3 (diff)
Fixed imports in contrib/completers/system.py
-rw-r--r--prompt_toolkit/contrib/completers/system.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/prompt_toolkit/contrib/completers/system.py b/prompt_toolkit/contrib/completers/system.py
index 78183cb2..fe8c655b 100644
--- a/prompt_toolkit/contrib/completers/system.py
+++ b/prompt_toolkit/contrib/completers/system.py
@@ -3,7 +3,7 @@ from __future__ import unicode_literals
from prompt_toolkit.contrib.regular_languages.completion import GrammarCompleter
from prompt_toolkit.contrib.regular_languages.compiler import compile
-from .filesystem import PathCompleter, ExecutableCompleter
+from prompt_toolkit.completion.filesystem import PathCompleter, ExecutableCompleter
__all__ = [
'SystemCompleter',