We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb9c462 commit e8a5c6bCopy full SHA for e8a5c6b
1 file changed
project16.py
@@ -6,7 +6,7 @@
6
def test_password(crypted_password):
7
salt = crypted_password[0:2]
8
9
- file_obj = open('dictitionary.txt','r')
+ file_obj = open('dictionary.txt','r')
10
for word in file_obj.readlines():
11
word = word.split('\n')
12
crypt_pass = crypt.crypt(word, salt)
@@ -27,4 +27,4 @@ def main():
27
28
29
if __name__ == '__main__':
30
- main()
+ main()
0 commit comments