QScintilla/TypingCompleters/__init__.py

changeset 12
1d8dd9706f46
parent 0
de9c2efb9d02
child 13
1af94a91f439
--- 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

eric ide

mercurial