Elrond keeps pointing out places I should "is not None" at :)

This commit is contained in:
Christopher Allan Webber 2014-08-08 13:24:59 -05:00
parent 113d1a280e
commit 3b104bbcef

View File

@ -869,9 +869,9 @@ def revert_username_index(db):
# table copying.
# Remove whichever of the not-used indexes are in place
if users_uploader_index:
if users_uploader_index is not None:
users_uploader_index.drop()
if users_username_index:
if users_username_index is not None:
users_username_index.drop()
# Given we're removing indexes then adding a unique constraint