I yum installed "alacarte" in this F-17/64 computer, the install apparently worked but it does not run, produces the following errors:
[bobg@Box7 ~]$ alacarte Traceback (most recent call last): File "/usr/bin/alacarte", line 36, in <module> main() File "/usr/bin/alacarte", line 33, in main app.run() File "/usr/lib/python2.7/site-packages/Alacarte/MainWindow.py", line 64, in run self.loadMenus() File "/usr/lib/python2.7/site-packages/Alacarte/MainWindow.py", line 203, in loadMenus self.on_menu_tree_cursor_changed(menu_tree) File "/usr/lib/python2.7/site-packages/Alacarte/MainWindow.py", line 354, in on_menu_tree_cursor_changed self.loadItems(self.menu_store[menu_path][2], menu_path) File "/usr/lib/python2.7/site-packages/Alacarte/MainWindow.py", line 217, in loadItems for item, show in self.editor.getItems(menu): File "/usr/lib/python2.7/site-packages/Alacarte/MenuEditor.py", line 145, in getItems item = item_iter.get_separator() AttributeError: 'TreeIter' object has no attribute 'get_separator'
This is an updated Fedora 17 install.
Can anyone tell me what to do?
Bob
--
box7
On Wed, 02 Jan 2013 12:27:31 -0500, Bob Goodwin - Zuni, Virginia, USA wrote:
I yum installed "alacarte" in this F-17/64 computer, the install apparently worked but it does not run, produces the following errors: [bobg@Box7 ~]$ alacarte Traceback (most recent call last): File "/usr/bin/alacarte", line 36, in <module> main() File "/usr/bin/alacarte", line 33, in main app.run() File "/usr/lib/python2.7/site-packages/Alacarte/MainWindow.py", line 64, in run self.loadMenus() File "/usr/lib/python2.7/site-packages/Alacarte/MainWindow.py", line 203, in loadMenus self.on_menu_tree_cursor_changed(menu_tree) File "/usr/lib/python2.7/site-packages/Alacarte/MainWindow.py", line 354, in on_menu_tree_cursor_changed self.loadItems(self.menu_store[menu_path][2], menu_path) File "/usr/lib/python2.7/site-packages/Alacarte/MainWindow.py", line 217, in loadItems for item, show in self.editor.getItems(menu): File "/usr/lib/python2.7/site-packages/Alacarte/MenuEditor.py", line 145, in getItems item = item_iter.get_separator() AttributeError: 'TreeIter' object has no attribute 'get_separator' This is an updated Fedora 17 install. Can anyone tell me what to do?
Use convenient pages like this one http://bugz.fedoraproject.org/alacarte as long as they still exist. ;)
On 02/01/13 12:40, Michael Schwendt wrote:
This is an updated Fedora 17 install. Can anyone tell me what to do?Use convenient pages like this one http://bugz.fedoraproject.org/alacarte as long as they still exist.;)
I didn't find that with google, and even with your pointer it took some effort to find but:
class MenuEditor(object): def __init__(self): self.applications = Menu('applications-gnome.menu') self.applications.tree.connect('changed', self.menuChanged)
Adding the "-gnome" in "/lib/python2.7/site-packages/Alacarte/MenuEditor.py" seems to have fixed things. At least alacarte starts the gui now.
Thank you.
Bob
--
box7