Custom Query (230 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (130 - 132 of 230)

Ticket Resolution Summary Owner Reporter
#233 fixed distros without glib bindings - Attribute Error: 'module' object has no attribute 'threads_init' https://me.yahoo.com/a/msXW47MQzuezDUZYqMTw_BZuM5gRRrQ-#7be22
Description

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:

        try:
            glib.threads_init()
        except AttributeError:
            #old versions of glib may not have this method
            pass
        try:
            gobject.threads_init()
        except AttributeError:
            #old versions of gobject may not have this method
            pass

Here is the actual error message I'm getting:

$ winswitch_server
[DD] 2013/13/03 16:34:58.449676 main_loop.loop_init(False)
Traceback (most recent call last):
  File "/usr/bin/winswitch_server", line 5, in <module>
    server_wrapper.main()
  File "/usr/lib/python2.6/site-packages/winswitch/server/server_wrapper.py", line 50, in main
    from winswitch.server.controller import WinSwitchServer
  File "/usr/lib/python2.6/site-packages/winswitch/server/controller.py", line 20, in <module>
    reactor = loop_init(False)
  File "/usr/lib/python2.6/site-packages/winswitch/util/main_loop.py", line 21, in loop_init
    glib.threads_init()
AttributeError: 'module' object has no attribute 'threads_init'
#58 fixed do_commit_changes list index out of range bug in ConfigureServerWindow Antoine Martin Antoine Martin
Description
2010/08/01 06:17:34 ConfigureServerWindow.commit_changes()
2010/08/01 06:17:34 Traceback (most recent call last):

2010/08/01 06:17:34   File "/usr/local/lib/python2.6/dist-packages/shifter/ui/config_common.py", line 311, in commit_changes
    self.do_commit_changes(args)

2010/08/01 06:17:34   File "/usr/local/lib/python2.6/dist-packages/shifter/ui/config_server.py", line 385, in do_commit_changes
    self.server.preferred_desktop_type = self.desktop_types[active]

2010/08/01 06:17:34 IndexError: list index out of range

#36 fixed don't use SCP to open file on a local server Antoine Martin Antoine Martin
Description

At the moment, we use the same process using FileCopier, but we could just open the file directly!

Note: See TracQuery for help on using queries.