diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-28 16:45:43 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-28 16:45:43 +0100 |
commit | 9ee855dcfb16c5dfeef59143c50d97cd89aa716b (patch) | |
tree | aea137c2934bef679d610e65503354dc15108a18 /portato/gui/__init__.py | |
parent | 418690070652c20a10681f9a61a958cd2a0920f6 (diff) | |
parent | 44965f41dfaddc9d7d7eab86498fc25b65793db2 (diff) | |
download | portato-9ee855dcfb16c5dfeef59143c50d97cd89aa716b.tar.gz portato-9ee855dcfb16c5dfeef59143c50d97cd89aa716b.tar.bz2 portato-9ee855dcfb16c5dfeef59143c50d97cd89aa716b.zip |
Added version infos to exceptions
Diffstat (limited to 'portato/gui/__init__.py')
-rw-r--r-- | portato/gui/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/__init__.py b/portato/gui/__init__.py index 1349e00..ba7bb3e 100644 --- a/portato/gui/__init__.py +++ b/portato/gui/__init__.py @@ -19,7 +19,7 @@ from .exception_handling import register_ex_handler def run (): from .windows.splash import SplashScreen try: - s = SplashScreen(_("Loading Portage")) + s = SplashScreen(_("Loading Backend")) register_ex_handler() s.show() from .windows.main import MainWindow |