Spacing in __str__ method of VictimHost

This commit is contained in:
Daniel Goldberg 2018-05-05 16:23:58 +03:00
parent e80e004fae
commit b6e39280be
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class VictimHost(object):
victim += "] Services - ["
for k, v in self.services.items():
victim += "%s-%s " % (k, v)
victim += ']'
victim += '] '
victim += "target monkey: %s" % self.monkey_exe
return victim