From bdbffd2d60cfdae344c3027353e34ada4c22e84e Mon Sep 17 00:00:00 2001 From: Erik Kristensen Date: Tue, 5 Oct 2010 23:42:04 -0400 Subject: [PATCH] whoops, fix a error I checked in with a variable i was only testing out earlier --- mythtv/MythBase.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mythtv/MythBase.py b/mythtv/MythBase.py index 770e8b5..a614f06 100755 --- a/mythtv/MythBase.py +++ b/mythtv/MythBase.py @@ -1263,10 +1263,10 @@ class MythBEConn( object ): def check_version(self): res = self.backendCommand('MYTH_PROTO_VERSION %s' \ % PROTO_VERSION).split(BACKEND_SEP) - if res[0] == 'REJECT' and res[1] != PROTO_VERSION_2: + if res[0] == 'REJECT': self.log(MythLog.IMPORTANT|MythLog.NETWORK, - "Backend has version %s, and we speak %d (%d)" %\ - (res[1], PROTO_VERSION, PROTO_VERSION_2)) + "Backend has version %s, and we speak %d" %\ + (res[1], PROTO_VERSION)) raise MythBEError(MythError.PROTO_MISMATCH, int(res[1]), PROTO_VERSION)