1diff --git a/fabulous/prompt.py b/fabulous/prompt.py
2index 531176f..e395ab4 100644
3--- a/fabulous/prompt.py
4+++ b/fabulous/prompt.py
5@@ -18,8 +18,7 @@
6 import sys
7 import os
8 import os.path
9-import term
10-from term import stdout, stderr, display
11+from .term import stdout, stderr, display
12
13 __all__ = ["input_object","query","file_chooser"]
14
15diff --git a/fabulous/widget.py b/fabulous/widget.py
16index 31a2547..7ad889a 100644
17--- a/fabulous/widget.py
18+++ b/fabulous/widget.py
19@@ -24,7 +24,7 @@ import os
20 import math
21 from datetime import datetime
22 # import textwrap
23-from term import stdout, display
24+from .term import stdout, display
25
26 class ProgressBar(object):
27 """A 3-line progress bar, which looks like::