Bug 456839
| Summary: | Failed to load module "libcanberra-gtk-module" .... | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Tom London <selinux> |
| Component: | libcanberra | Assignee: | Lennart Poettering <lpoetter> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | rawhide | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2008-07-28 11:16:07 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Tom London
2008-07-28 01:06:25 UTC
Wrote simple program in Python:
import pygtk
pygtk.require('2.0')
import gtk
class Base:
def __init__(self):
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.show()
def main(self):
gtk.main()
print __name__
if __name__=="__main__":
base = Base()
base.main()
And the output was
Gtk-Message: Failed to load module "libcanberra-gtk-module":
libcanberra-gtk-module.so: cannot open shared object file: No such file or directory
__main__
(In reply to comment #1) > Wrote simple program in Python: > > import pygtk > pygtk.require('2.0') > import gtk > > class Base: > def __init__(self): > self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) > self.window.show() > > def main(self): > gtk.main() > > print __name__ > if __name__=="__main__": > base = Base() > base.main() > > And the output was > Gtk-Message: Failed to load module "libcanberra-gtk-module": > libcanberra-gtk-module.so: cannot open shared object file: No such file or directory > __main__ > Created a symlink in /usr/lib/ to /usr/lib/gtk-2.0/modules/libcanberra-gtk-module Error message no longer reported This is fixed in the latest version of the libcanebrra package (0.4-2) |