Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Read package version without importing it
for line in open(os.path.join(os.path.dirname(os.path.abspath('.')), "tarantool", "__init__.py")):
if line.startswith("__version__"):
exec line
exec(line)
break

# -- General configuration -----------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions test/cluster-py/multi.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
def check_connection(con):
try:
s = con.space('test')
print s.select()
print(s.select())
except NetworkError:
print 'NetworkError !'
print('NetworkError !')
except Exception as e:
print e
print(e)


# Start instances
Expand Down