summaryrefslogtreecommitdiff
path: root/portato/gui/__init__.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-03-28 15:01:29 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-03-28 15:01:29 +0100
commit44965f41dfaddc9d7d7eab86498fc25b65793db2 (patch)
treeaea137c2934bef679d610e65503354dc15108a18 /portato/gui/__init__.py
parent418690070652c20a10681f9a61a958cd2a0920f6 (diff)
downloadportato-44965f41dfaddc9d7d7eab86498fc25b65793db2.tar.gz
portato-44965f41dfaddc9d7d7eab86498fc25b65793db2.tar.bz2
portato-44965f41dfaddc9d7d7eab86498fc25b65793db2.zip
Added version infos to exceptions
Diffstat (limited to 'portato/gui/__init__.py')
-rw-r--r--portato/gui/__init__.py2
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