avatar migration: Remove now-unnecessary debugging print.

This commit is contained in:
Tim Abbott
2017-03-07 23:17:11 -08:00
parent a32f666f5c
commit 7c9ee2f677

View File

@@ -30,7 +30,6 @@ def move_local_file(type, path_src, path_dst):
src_file_path = os.path.join(settings.LOCAL_UPLOADS_DIR, type, path_src)
dst_file_path = os.path.join(settings.LOCAL_UPLOADS_DIR, type, path_dst)
if os.path.exists(dst_file_path):
print("Skipping already migrated %s" % (dst_file_path,))
return
if not os.path.exists(src_file_path):
# This is likely caused by a user having previously changed their email