--- a/QScintilla/TypingCompleters/CompleterRuby.py Fri Jan 01 16:11:36 2010 +0000 +++ b/QScintilla/TypingCompleters/CompleterRuby.py Sat Jan 02 15:11:35 2010 +0000 @@ -10,7 +10,7 @@ from PyQt4.QtCore import QObject, SIGNAL, QRegExp from PyQt4.Qsci import QsciLexerRuby -from CompleterBase import CompleterBase +from .CompleterBase import CompleterBase import Preferences @@ -59,7 +59,7 @@ @param charNumber value of the character entered (integer) """ - char = unichr(charNumber) + char = chr(charNumber) if char not in ['(', ')', '{', '}', '[', ']', ',', "'", '"', '\n', ' ']: return # take the short route