diff --git a/theunderground/intro_info.py b/theunderground/intro_info.py index 58805f0e..9e5eb10d 100644 --- a/theunderground/intro_info.py +++ b/theunderground/intro_info.py @@ -56,7 +56,7 @@ def add_intro_info(): # Wii Room requires video content id's to be 16 characters long. if intro_db.cnt_type == ContentTypes.Video: - intro_db.cnt_id = 1000000000000000 + intro_db.cnt_id + intro_db.cnt_id = int(str(intro_db.cnt_id).ljust(16, "0")) db.session.add(intro_db) db.session.commit()