Skip to content

Commit

Permalink
strip the prum finisher input before assigning to key
Browse files Browse the repository at this point in the history
  • Loading branch information
sbillinge committed Dec 31, 2024
1 parent 157f294 commit a67cef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/regolith/helpers/u_finishprumhelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def construct_global_ctx(self):

def db_updater(self):
rc = self.rc
key = rc.projectum_id
key = rc.projectum_id.strip()
filterid = {"_id": key}
found_projectum = rc.client.find_one(rc.database, rc.coll, filterid)
if not found_projectum:
Expand Down

0 comments on commit a67cef2

Please sign in to comment.