Remove pointless format

This commit is contained in:
Yuri D'Elia 2020-10-12 02:00:11 +02:00
parent e06a4dced4
commit 96da8485d9

View file

@ -81,7 +81,7 @@ def main():
open(file_name, "wb").write(plaintext)
if plumber is not None:
subprocess.run([plumber, "{file}".format(file=file_name)])
subprocess.run([plumber, file_name])
return 0