Skip to content

Commit

Permalink
fix: SyntaxError: f-string: unmatched '['
Browse files Browse the repository at this point in the history
  • Loading branch information
wsx committed May 8, 2024
1 parent b9afe21 commit 6049d6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions videotrans/task/trans_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,11 +411,11 @@ def move_at_end(self):
if not self.config_params['is_batch']:
tools.set_process('', 'allow_edit', btnkey=self.init['btnkey'])
#time.sleep(3)
print(f'结束100% {self.obj['raw_basename']}')
print(f"结束100% {self.obj['raw_basename']}")

tools.set_process(
f"{output}##{self.obj['raw_basename']}",
'succeed',
btnkey=self.init['btnkey']
)
tools.send_notification("Succeed", f'{self.obj["raw_basename"]}')
tools.send_notification("Succeed", f"{self.obj['raw_basename']}")

0 comments on commit 6049d6a

Please sign in to comment.