Changes between Initial Version and Version 1 of Ticket #233
- Timestamp:
- 03/14/13 03:44:36 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #233
-
Property
Status
changed from
new
toclosed
-
Property
Milestone
changed from
to
0.12
-
Property
Resolution
changed from
to
fixed
-
Property
Summary
changed from
Winswitch Broken - Attribute Error: 'module' object has no attribute 'threads_init'
todistros without glib bindings - Attribute Error: 'module' object has no attribute 'threads_init'
-
Property
Status
changed from
-
Ticket #233 – Description
initial v1 1 1 2 2 When I install winswitch on Centos 6.4, I get the following error. Installation went fine, no issues. (Windows version worked fine too, no issues.) I'm assuming it needs something similar to the following added: 3 3 {{{ 4 4 try: 5 5 glib.threads_init() … … 12 12 #old versions of gobject may not have this method 13 13 pass 14 14 }}} 15 15 16 16 Here is the actual error message I'm getting: 17 17 18 18 {{{ 19 19 $ winswitch_server 20 20 [DD] 2013/13/03 16:34:58.449676 main_loop.loop_init(False) … … 29 29 glib.threads_init() 30 30 AttributeError: 'module' object has no attribute 'threads_init' 31 }}}