fixed debug logging output

This commit is contained in:
byt3bl33d3r 2014-07-14 09:10:45 +02:00
parent 0eda0eab12
commit 156222d775
3 changed files with 9 additions and 5 deletions

View file

@ -168,7 +168,7 @@ class FilePwn(Plugin):
logging.info("ZipFile size: %s KB" % (len(aZipFile) / 1024))
if len(aZipFile) > int(self.userConfig['ZIP']['maxSize']):
logging.info("ZipFIle maxSize met %s", len(aZipFile))
logging.info("ZipFIle maxSize met %s" % len(aZipFile))
return aZipFile
tmpRan = ''.join(random.choice(string.ascii_lowercase + string.digits + string.ascii_uppercase) for _ in range(8))