summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2010-02-25 06:13:23 +0000
committerPeter Volkov <pva@gentoo.org>2010-02-25 06:13:23 +0000
commitff8f4a5c92e8c47ce1f8a657b7fd41bf7a57546e (patch)
tree2ee94e99a87ac324320c2195c8d79b86fdacb585 /net-im/gajim/files
parentBump to 2.0.3.6. Assorted fixes. (diff)
downloadhistorical-ff8f4a5c92e8c47ce1f8a657b7fd41bf7a57546e.tar.gz
historical-ff8f4a5c92e8c47ce1f8a657b7fd41bf7a57546e.tar.bz2
historical-ff8f4a5c92e8c47ce1f8a657b7fd41bf7a57546e.zip
Version bump, bug #306609, thank Justin Lecher for report.
Package-Manager: portage-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.patch39
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'''
-