Skip to content

Commit

Permalink
Fix msfenum.log path
Browse files Browse the repository at this point in the history
  • Loading branch information
wez3 committed Jul 12, 2018
1 parent 8bc6209 commit 9695042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msfenum.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def ascii():
if __name__ == '__main__':
# Define logger settings
currentPath = path.dirname(path.abspath(__file__))
logfile= "msfenum.log"
logfile= "{}/msfenum.log".format(currentPath)
logging.basicConfig(filename=logfile, level=logging.DEBUG)
log = logging.getLogger()
handler = logging.StreamHandler()
Expand Down

0 comments on commit 9695042

Please sign in to comment.