From fe33410b43d8a04844c1dfba1d1f756914ec1344 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 3 Dec 2008 21:38:31 +0000 Subject: [PATCH] [thorstenp] fix unequal operator --- src/common/zeroconf/client_zeroconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()