Fixed numbers being strings (big oops)

This commit is contained in:
Jacob Henry 2018-11-20 13:07:16 -05:00
parent f10786e187
commit f30bc04db7
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ async def import_assignments() -> List[Optional[JobAssignment]]:
if signer == SIGNOFF_PLACEHOLDER:
signer = None
else:
signer = scroll_util.find_by_name(signer)
signer = await scroll_util.find_by_name(signer)
except scroll_util.BrotherNotFound:
# If we can't figure out the name
signer = None