diff options
author | Peter Volkov <pva@gentoo.org> | 2010-02-25 06:13:23 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2010-02-25 06:13:23 +0000 |
commit | f09b984406a9e85144c316fb9e992c4bbb04c1ea (patch) | |
tree | bd938dea4946cc5caf865c1639052e9c86f63790 /net-im/gajim/files | |
parent | Bump to 2.0.3.6. Assorted fixes. (diff) | |
download | gentoo-2-f09b984406a9e85144c316fb9e992c4bbb04c1ea.tar.gz gentoo-2-f09b984406a9e85144c316fb9e992c4bbb04c1ea.tar.bz2 gentoo-2-f09b984406a9e85144c316fb9e992c4bbb04c1ea.zip |
Version bump, bug #306609, thank Justin Lecher for report.
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'net-im/gajim/files')
-rw-r--r-- | net-im/gajim/files/gajim-0.13.1-define-exception.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/net-im/gajim/files/gajim-0.13.1-define-exception.patch b/net-im/gajim/files/gajim-0.13.1-define-exception.patch deleted file mode 100644 index 0091592a42fd..000000000000 --- a/net-im/gajim/files/gajim-0.13.1-define-exception.patch +++ /dev/null @@ -1,39 +0,0 @@ -=== modified file 'src/common/dbus_support.py' ---- src/common/dbus_support.py 2010-01-04 16:15:54 +0000 -+++ src/common/dbus_support.py 2010-01-04 16:16:12 +0000 -@@ -60,7 +60,7 @@ - raise exceptions.DbusNotSupported - - if not self.present(): -- raise exceptions.SystemBusNotPresent -+ raise exceptions.SystemBusNotPresent - return self.system_bus - - def bus(self): - -=== modified file 'src/common/exceptions.py' ---- src/common/exceptions.py 2010-01-04 16:15:54 +0000 -+++ src/common/exceptions.py 2010-01-04 16:19:55 +0000 -@@ -68,7 +68,20 @@ - Exception.__init__(self) - - def __str__(self): -- return _('Session bus is not available.\nTry reading http://trac.gajim.org/wiki/GajimDBus') -+ return _('Session bus is not available.\nTry reading %(url)s') % \ -+ {'url': 'http://trac.gajim.org/wiki/GajimDBus'} -+ -+class SystemBusNotPresent(Exception): -+ """ -+ This exception indicates that there is no session daemon -+ """ -+ -+ def __init__(self): -+ Exception.__init__(self) -+ -+ def __str__(self): -+ return _('System bus is not available.\nTry reading %(url)s') % \ -+ {'url': 'http://trac.gajim.org/wiki/GajimDBus'} - - class NegotiationError(Exception): - '''A session negotiation failed''' - |