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) boxfile = abspath(boxfile)
if not isfile(boxfile): if not isfile(boxfile):
raise FDroidBuildVmException( 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) self.vgrnt.box_add(boxname, abspath(boxfile), force=force)