1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

fix pylint W0715: Exception arguments suggest string formatting might be intended (raising-format-tuple)

This commit is contained in:
Hans-Christoph Steiner 2023-02-02 15:47:51 +01:00
parent 156b3f91cc
commit 176301d831

View File

@ -323,7 +323,7 @@ class FDroidBuildVm:
boxfile = abspath(boxfile)
if not isfile(boxfile):
raise FDroidBuildVmException(
'supplied boxfile \'%s\' does not exist', boxfile
'supplied boxfile \'%s\' does not exist' % boxfile
)
self.vgrnt.box_add(boxname, abspath(boxfile), force=force)