summaryrefslogtreecommitdiffstats
path: root/yt/python
diff options
context:
space:
mode:
Diffstat (limited to 'yt/python')
-rw-r--r--yt/python/yt/yson/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/python/yt/yson/__init__.py b/yt/python/yt/yson/__init__.py
index c20ae5ea52b..e9a303b4f89 100644
--- a/yt/python/yt/yson/__init__.py
+++ b/yt/python/yt/yson/__init__.py
@@ -22,7 +22,7 @@ Examples:
>>> yson.dumps(True)
'"true"'
->>> number = yson.YsonInteger(10)
+>>> number = yson.YsonInt64(10)
>>> number.attributes["my_attr"] = "hello"
>>> yson.dumps(number)
'<"attr"="hello">10'