update __repr__ method in VictimHost class

- __repr__ method should return the standard constructor string (pep8)
This commit is contained in:
Rahul Goswami 2018-05-03 00:50:02 +05:30 committed by GitHub
parent 0937ebb520
commit 7503a77ff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class VictimHost(object):
return self.ip_addr.__cmp__(other.ip_addr)
def __repr__(self):
return "<VictimHost %s>" % self.ip_addr
return "VictimHost({0!r})".format(self.ip_addr)
def __str__(self):
victim = "Victim Host %s: " % self.ip_addr