Ensure integer is an integer

This commit is contained in:
Erik Johnston 2016-03-09 10:20:48 +00:00
parent ce829c2aef
commit 158a322e82

View file

@ -34,7 +34,7 @@ def _load_max_id(db_conn, table, column):
cur.execute("SELECT MAX(%s) FROM %s" % (column, table,))
val, = cur.fetchone()
cur.close()
return val if val else 1
return int(val) if val else 1
class StreamIdGenerator(object):