From c03355395ec4c40cbb5ac55917767e20b6a05dfd Mon Sep 17 00:00:00 2001 From: Danny Grove Date: Mon, 20 May 2019 15:29:22 -0700 Subject: [PATCH] Double opened password_word_list causing issues --- mtls.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/mtls.py b/mtls.py index 8f677df..912c742 100644 --- a/mtls.py +++ b/mtls.py @@ -456,8 +456,6 @@ def _genPW(self): wordList = open( os.path.join(os.path.dirname(__file__), 'password_word_list') ) - - wordFile = open('password_word_list', 'r') wordList = [] for line in wordFile: wordList.append(line.rstrip('\n'))