We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89a8607 commit 7163daaCopy full SHA for 7163daa
tarantool/utils.py
@@ -62,7 +62,7 @@ class Greeting:
62
# Tarantool 1.6.8-132-g82f5424 (Lua console)
63
result = Greeting()
64
try:
65
- (product, _, tail) = str(greeting_buf)[0:63].partition(' ')
+ (product, _, tail) = greeting_buf[0:63].decode().partition(' ')
66
if product.startswith("Tarantool "):
67
raise Exception()
68
# Parse a version string - 1.6.6-83-gc6b2129 or 1.6.7
0 commit comments