tuikit/editbox.py
changeset 18 e6c3a5ee91aa
parent 9 7175ed629a76
child 32 088b92ffb119
--- a/tuikit/editbox.py	Fri Oct 07 10:57:12 2011 +0200
+++ b/tuikit/editbox.py	Fri Oct 07 11:07:59 2011 +0200
@@ -1,6 +1,7 @@
 # -*- coding: utf-8 -*-
 
-from .widget import Widget
+from tuikit.widget import Widget
+
 
 class EditBox(Widget):
     def __init__(self, width=20, height=20, text=''):
@@ -218,3 +219,4 @@
                 self.handle('areasize')
         else:
             self.lines[self.cline] = ln[:cpos] + ln[cpos+1:]
+