Opened 18 years ago
Closed 18 years ago
#458 closed bug (Invalid)
There is a error in /usr/lib/python2.5/site-packages/deluge-0.9.08-py2.5-linux-i686.egg/deluge/ui/gtkui/mainwindow.py
| Reported by: | jix | Owned by: | andar |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | Unknown | Version: | 0.9.08 (1.0.0_RC8) |
| Keywords: | Cc: |
Description
line 50-53 about
pkg_resources.resource_filename("deluge.ui.gtkui","glade/main_window.glade"))
look last two letters ,it should be only one ')',not two
pkg_resources.resource_filename("deluge.ui.gtkui","glade/main_window.glade")
Note:
See TracTickets
for help on using tickets.



Actually, it is correct.
This is the line in main_window.py:
self.main_glade = gtk.glade.XML( pkg_resources.resource_filename("deluge.ui.gtkui", "glade/main_window.glade"))You notice that there are 2 (( and 2 )) as there should be.