mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03:00
fix pylint W0715: Exception arguments suggest string formatting might be intended (raising-format-tuple)
This commit is contained in:
parent
156b3f91cc
commit
176301d831
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue