Talk:PyPenNotes

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(gtk _init() bug)
 
m
Line 1: Line 1:
Installed python-pygtk python-pygt-devel but still have an init() error with gtk. Asking for a "_init()" instead of "init()". find some threads about the def init(),as in [[Mofi]].
+
Installed python-pygtk python-pygtk-dev but still have an init() error with gtk. Asking for a "_init()" instead of "init()". find some threads about the def init(),as in [[Mofi]].
  
  
Line 6: Line 6:
 
<pre>
 
<pre>
 
if not hasattr(sys.modules['__main__'], 'python_launcher_enabled'):
 
if not hasattr(sys.modules['__main__'], 'python_launcher_enabled'):
    _init()
+
_init()
 
</pre>
 
</pre>
  
 
[[Category:Gtk PyPenNotes Application]]
 
[[Category:Gtk PyPenNotes Application]]

Revision as of 23:28, 26 October 2008

Installed python-pygtk python-pygtk-dev but still have an init() error with gtk. Asking for a "_init()" instead of "init()". find some threads about the def init(),as in Mofi.


I edited the "/usr/lib/python2.5/site-packages/gtk-2.0/gtk/__init__.py" file and add a "_" at line 82

if not hasattr(sys.modules['__main__'], 'python_launcher_enabled'):
_init()
Personal tools

Installed python-pygtk python-pygtk-dev but still have an init() error with gtk. Asking for a "_init()" instead of "init()". find some threads about the def init(),as in Mofi.


I edited the "/usr/lib/python2.5/site-packages/gtk-2.0/gtk/__init__.py" file and add a "_" at line 82

if not hasattr(sys.modules['__main__'], 'python_launcher_enabled'):
_init()