summaryrefslogtreecommitdiff
path: root/ovsdb/ovsdb-dot.in
diff options
context:
space:
mode:
Diffstat (limited to 'ovsdb/ovsdb-dot.in')
-rwxr-xr-xovsdb/ovsdb-dot.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/ovsdb/ovsdb-dot.in b/ovsdb/ovsdb-dot.in
index 43c50dabd..8eea61724 100755
--- a/ovsdb/ovsdb-dot.in
+++ b/ovsdb/ovsdb-dot.in
@@ -15,14 +15,14 @@ def printEdge(tableName, type, baseType, label):
if type.n_min == 0:
if type.n_max == 1:
arity = "?"
- elif type.n_max == sys.maxint:
+ elif type.n_max == sys.maxsize:
arity = "*"
else:
arity = "{,%d}" % type.n_max
elif type.n_min == 1:
if type.n_max == 1:
arity = ""
- elif type.n_max == sys.maxint:
+ elif type.n_max == sys.maxsize:
arity = "+"
else:
arity = "{1,%d}" % type.n_max