mirror of
https://github.com/isjerryxiao/pacroller.git
synced 2024-11-14 20:32:24 +08:00
fix fstring without f
This commit is contained in:
parent
d49fba9196
commit
c2d2cc68cf
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ def sync() -> None:
|
||||||
logger.exception(f'sync failed with {e.returncode=} {e.output=}')
|
logger.exception(f'sync failed with {e.returncode=} {e.output=}')
|
||||||
raise
|
raise
|
||||||
except subprocess.TimeoutExpired as e:
|
except subprocess.TimeoutExpired as e:
|
||||||
logger.warning('database download timeout {e.timeout=} {e.output=}')
|
logger.warning(f'database download timeout {e.timeout=} {e.output=}')
|
||||||
if Path(PACMAN_DB_LCK).exists():
|
if Path(PACMAN_DB_LCK).exists():
|
||||||
logger.warning(f'automatically removing {PACMAN_DB_LCK}')
|
logger.warning(f'automatically removing {PACMAN_DB_LCK}')
|
||||||
Path(PACMAN_DB_LCK).unlink()
|
Path(PACMAN_DB_LCK).unlink()
|
||||||
|
|
Loading…
Reference in a new issue