Skip to content

Commit 69814b4

Browse files
author
Clark Perkins
committed
Allow 0.8.x servers
1 parent afa420d commit 69814b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stackdio/client/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ def __init__(self, url=None, username=None, password=None, verify=True, cfg_file
6464
except MissingUrlException:
6565
self.version = None
6666

67-
if self.version and (self.version[0] != 0 or self.version[1] != 7):
67+
if self.version and (self.version[0] != 0 or self.version[1] != 8):
6868
raise IncompatibleVersionException('Server version {0}.{1}.{2} not '
69-
'supported.'.format(**self.version))
69+
'supported.'.format(*self.version))
7070

7171
@property
7272
def url(self):

0 commit comments

Comments
 (0)