From afaea8731913323da54c409c04f9ea68c52ceeee Mon Sep 17 00:00:00 2001 From: martin Date: Fri, 4 Mar 2011 11:48:43 -0500 Subject: [PATCH] -fix pypo version string validation --- pypo/api_clients/api_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypo/api_clients/api_client.py b/pypo/api_clients/api_client.py index 4802a54ed..b7023d349 100644 --- a/pypo/api_clients/api_client.py +++ b/pypo/api_clients/api_client.py @@ -174,7 +174,7 @@ class AirTimeApiClient(ApiClientInterface): print 'Unable to get Airtime version number.' print return False - elif (version[0:4] != "1.6."): + elif (version[0:4] != "1.7."): if (verbose): print 'Airtime version: ' + str(version) print 'pypo not compatible with this version of Airtime.'