Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2008-12-04 00:38:31 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-12-04 00:38:31 +0300
commitfe33410b43d8a04844c1dfba1d1f756914ec1344 (patch)
tree5cf212aea1c2f8959ad08c0fa332cf16f41c4b7d
parentc271d1f15a8d7a014139f6ffaac477c38ee808a6 (diff)
[thorstenp] fix unequal operator
-rw-r--r--src/common/zeroconf/client_zeroconf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/zeroconf/client_zeroconf.py b/src/common/zeroconf/client_zeroconf.py
index 6952636c5..a5c0b9556 100644
--- a/src/common/zeroconf/client_zeroconf.py
+++ b/src/common/zeroconf/client_zeroconf.py
@@ -222,7 +222,7 @@ class P2PClient(IdleObject):
self.Dispatcher._metastream)[:-2])
def _check_stream_start(self, ns, tag, attrs):
- if ns<>NS_STREAMS or tag<>'stream':
+ if ns != NS_STREAMS or tag != 'stream':
self.Connection.DEBUG('Incorrect stream start: (%s,%s).Terminating! ' \
% (tag, ns), 'error')
self.Connection.disconnect()