Skip to content

Commit

Permalink
Don't try to call subject.async_save_result
Browse files Browse the repository at this point in the history
Closes #83
  • Loading branch information
adammcmaster committed Oct 1, 2018
1 parent 5227dda commit 830f472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panoptes_cli/commands/subject_set.py
Expand Up @@ -198,7 +198,7 @@ def upload_subjects(
def move_created(limit):
while len(pending_subjects) > limit:
for subject in pending_subjects:
if subject.async_save_result():
if subject.async_save_result:
created_subjects.append(subject)
pending_subjects.remove(subject)
time.sleep(0.5)
Expand Down

0 comments on commit 830f472

Please sign in to comment.