Merge pull request #1211 from micheloosterhof/apt

better argument parsing
This commit is contained in:
Michel Oosterhof 2019-09-12 22:50:48 +04:00 committed by GitHub
commit 53106f8773
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class command_faked_package_class_factory(object):
def getCommand(name):
class command_faked_installation(HoneyPotCommand):
def call(self):
self.write(b"%s: Segmentation fault\n" % name)
self.write("{}: Segmentation fault\n".format(name))
return command_faked_installation