Skip to content

Commit 3584979

Browse files
committed
Another typo in the exception error message fixed
1 parent 62ead19 commit 3584979

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tarantool/request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def pack_int(value):
5555
'''
5656
if __debug__:
5757
if not isinstance(value, int):
58-
raise TypeError("Invalid argument type '%s', 'int' expected"%type(value).__name__)
58+
raise TypeError("Invalid argument type '%s'. Only 'int' expected"%type(value).__name__)
5959
return struct_BL.pack(4, value)
6060

6161

0 commit comments

Comments
 (0)