--- a/QScintilla/TypingCompleters/__init__.py Fri Jan 01 16:11:36 2010 +0000 +++ b/QScintilla/TypingCompleters/__init__.py Sat Jan 02 15:11:35 2010 +0000 @@ -18,10 +18,10 @@ """ try: if language == "Python": - from CompleterPython import CompleterPython + from .CompleterPython import CompleterPython return CompleterPython(editor, parent) elif language == "Ruby": - from CompleterRuby import CompleterRuby + from .CompleterRuby import CompleterRuby return CompleterRuby(editor, parent) else: return None