Bug#472624: Elisa 0.5.25 upload

Norman Messtorff normes at normes.org
Sun Jul 5 17:53:19 UTC 2009


Hi Paul,

thanks for your upload. I've installed elisa 0.5.37 from experimental
and had to install python-twisted and python-coherence by hand.

Elisa is still crashing, even if I remove the ~/.elisa* stuff.

Attached you'll find the traceback...


    Norman
-------------- next part --------------
normes at orp:~$ elisa -t
Launcher core version: 0.5.37
Current core version: 0.5.37
WARN  MainThread      application                 Jul 05 19:45:45  An Traceback occurred and got saved to /tmp/elisa_HCxIaV.txt (elisa/core/application.py:313)
<type 'exceptions.AttributeError'>
Python 2.5.4: /usr/bin/python
Sun Jul  5 19:45:45 2009

A problem occurred in a Python script.  Here is the sequence of
function calls leading up to the error, in the order they occurred.

 /usr/bin/elisa in <module>()
    5 from pkg_resources import load_entry_point
    6 
    7 sys.exit(
    8    load_entry_point('elisa==0.5.37', 'gui_scripts', 'elisa')()
    9 )
load_entry_point = <function load_entry_point at 0xb7bf4224>

 /usr/lib/python2.5/site-packages/elisa/core/launcher.py in main()
  387 
  388 def main():
  389     Launcher().main(sys.argv)
  390 
  391 
global Launcher = <class 'elisa.core.launcher.Launcher'>
).main = <unbound method Launcher.main>
global sys = <module 'sys' (built-in)>
sys.argv = ['/usr/bin/elisa', '-t']

 /usr/lib/python2.5/site-packages/elisa/core/launcher.py in main(self=<elisa.core.launcher.Launcher object at 0xb7c0bfac>, argv=['/usr/bin/elisa', '-t'])
   81         self.main_before_voodoo()
   82         # from now on it's safe to import stuff
   83         return self.main_after_voodoo(argv)
   84 
   85     def setup_win_output_redirection(self):
self = <elisa.core.launcher.Launcher object at 0xb7c0bfac>
self.main_after_voodoo = <bound method Launcher.main_after_voodoo of <elisa.core.launcher.Launcher object at 0xb7c0bfac>>
argv = ['/usr/bin/elisa', '-t']

 /usr/lib/python2.5/site-packages/elisa/core/launcher.py in main_after_voodoo(self=<elisa.core.launcher.Launcher object at 0xb7c0bfac>, argv=['/usr/bin/elisa', '-t'])
  228             self.exit(2)
  229 
  230         self.run_application()
  231 
  232     def set_win_environment_after_voodoo(self):
self = <elisa.core.launcher.Launcher object at 0xb7c0bfac>
self.run_application = <bound method Launcher.run_application of <elisa.core.launcher.Launcher object at 0xb7c0bfac>>

 /usr/lib/python2.5/site-packages/elisa/core/launcher.py in run_application(self=<elisa.core.launcher.Launcher object at 0xb7c0bfac>)
  358         from twisted.internet import reactor
  359 
  360         application = Application(self.options)
  361         common.set_application(application)
  362 
application undefined
Application = <class 'elisa.core.application.Application'>
self = <elisa.core.launcher.Launcher object at 0xb7c0bfac>
self.options = {'files': (), 'fullscreen': 0, 'shell': 0, 'log'... 'unfullscreen': 0, 'rss': None, 'tracebacks': 1}

 /usr/lib/python2.5/site-packages/elisa/core/application.py in __init__(self=<elisa.core.application.Application object at 0x8934a8c>, options={'files': (), 'fullscreen': 0, 'shell': 0, 'log'... 'unfullscreen': 0, 'rss': None, 'tracebacks': 1})
  246         self.store = None
  247 
  248         self.bus = bus.Bus()
  249 
  250         self.service_manager = service_manager.ServiceManager()
self = <elisa.core.application.Application object at 0x8934a8c>
self.bus undefined
global bus = <module 'elisa.core.bus' from '/usr/lib/python2.5/site-packages/elisa/core/bus/__init__.pyc'>
bus.Bus undefined
<type 'exceptions.AttributeError'>: 'module' object has no attribute 'Bus'
    __class__ = <type 'exceptions.AttributeError'>
    __delattr__ = <method-wrapper '__delattr__' of exceptions.AttributeError object at 0xb7d8ea6c>
    __dict__ = {}
    __doc__ = 'Attribute not found.'
    __getattribute__ = <method-wrapper '__getattribute__' of exceptions.AttributeError object at 0xb7d8ea6c>
    __getitem__ = <method-wrapper '__getitem__' of exceptions.AttributeError object at 0xb7d8ea6c>
    __getslice__ = <method-wrapper '__getslice__' of exceptions.AttributeError object at 0xb7d8ea6c>
    __hash__ = <method-wrapper '__hash__' of exceptions.AttributeError object at 0xb7d8ea6c>
    __init__ = <method-wrapper '__init__' of exceptions.AttributeError object at 0xb7d8ea6c>
    __new__ = <built-in method __new__ of type object at 0x8144f40>
    __reduce__ = <built-in method __reduce__ of exceptions.AttributeError object at 0xb7d8ea6c>
    __reduce_ex__ = <built-in method __reduce_ex__ of exceptions.AttributeError object at 0xb7d8ea6c>
    __repr__ = <method-wrapper '__repr__' of exceptions.AttributeError object at 0xb7d8ea6c>
    __setattr__ = <method-wrapper '__setattr__' of exceptions.AttributeError object at 0xb7d8ea6c>
    __setstate__ = <built-in method __setstate__ of exceptions.AttributeError object at 0xb7d8ea6c>
    __str__ = <method-wrapper '__str__' of exceptions.AttributeError object at 0xb7d8ea6c>
    args = ("'module' object has no attribute 'Bus'",)
    message = "'module' object has no attribute 'Bus'"

The above is a description of an error in a Python program.  Here is
the original traceback:

Traceback (most recent call last):
  File "/usr/bin/elisa", line 8, in <module>
    load_entry_point('elisa==0.5.37', 'gui_scripts', 'elisa')()
  File "/usr/lib/python2.5/site-packages/elisa/core/launcher.py", line 389, in main
    Launcher().main(sys.argv)
  File "/usr/lib/python2.5/site-packages/elisa/core/launcher.py", line 83, in main
    return self.main_after_voodoo(argv)
  File "/usr/lib/python2.5/site-packages/elisa/core/launcher.py", line 230, in main_after_voodoo
    self.run_application()
  File "/usr/lib/python2.5/site-packages/elisa/core/launcher.py", line 360, in run_application
    application = Application(self.options)
  File "/usr/lib/python2.5/site-packages/elisa/core/application.py", line 248, in __init__
    self.bus = bus.Bus()
AttributeError: 'module' object has no attribute 'Bus'




More information about the Pkg-gstreamer-maintainers mailing list