Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
petronny committed Mar 29, 2024
1 parent b4b789f commit 51d23f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/download-depends.py
Expand Up @@ -57,7 +57,7 @@ def resolve_depends(repository, pkgbase, result, key='depends'):
try:
status = Status.objects.get(key=pkgbase)
except:
raise Exception('Cannot find {pkgbase} in the database.')
raise Exception(f'Cannot find {pkgbase} in the database.')

if datetime.now() - status.timestamp > timedelta(days=1):
pacman_packages.append(f'{config["pacman"]["repository"]}/{pkgname}')
Expand Down

0 comments on commit 51d23f2

Please sign in to comment.