From 0541f1abd3f4317e0272934367fe2d84df246cd9 Mon Sep 17 00:00:00 2001 From: Necoro <> Date: Wed, 3 Oct 2007 17:59:27 +0000 Subject: small fixes; removed old icon --- doc/Changelog | 1 + icons/portato-icon_old.png | Bin 5265 -> 0 bytes portato/backend/portage/system.py | 2 +- portato/gui/gtk/windows.py | 4 ++++ portato/gui/gui_helper.py | 1 - 5 files changed, 6 insertions(+), 2 deletions(-) delete mode 100644 icons/portato-icon_old.png diff --git a/doc/Changelog b/doc/Changelog index 54815e0..960f46c 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -2,6 +2,7 @@ next: - "porting" to python-2.5 - adding support for the "--with-bdeps=y" option in EMERGE_DEFAULT_OPTS - fix update world +- added support for pygtksourceview-2 0.8.5: - added an uncaught exception dialog diff --git a/icons/portato-icon_old.png b/icons/portato-icon_old.png deleted file mode 100644 index 59d7441..0000000 Binary files a/icons/portato-icon_old.png and /dev/null differ diff --git a/portato/backend/portage/system.py b/portato/backend/portage/system.py index 5916a9f..93c5ea0 100644 --- a/portato/backend/portage/system.py +++ b/portato/backend/portage/system.py @@ -19,7 +19,7 @@ import portage from .package import PortagePackage from .settings import PortageSettings from ..system_interface import SystemInterface -from ...helper import debug, info, unique_array +from ...helper import debug, info, warning, unique_array class PortageSystem (SystemInterface): """This class provides access to the portage-system.""" diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index 7234490..dc3dc35 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -391,6 +391,10 @@ class EbuildWindow (AbstractDialog): else: man = gtksourceview2.LanguageManager() language = man.get_language("ebuild") + + if language is None: + info(_("No ebuild language file installed. Falling back to shell.")) + language = man.get_language("sh") # set buffer and view self.buf = gtksourceview2.Buffer() diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py index d1c53d0..fb531d7 100644 --- a/portato/gui/gui_helper.py +++ b/portato/gui/gui_helper.py @@ -518,7 +518,6 @@ class EmergeQueue: if self.title_update: self.title_update(None) - if self.process is None: # someone resetted this self.threadQueue.next() return -- cgit v1.2.3