Skip to content

Commit e8a5c6b

Browse files
authored
Update project16.py
1 parent fb9c462 commit e8a5c6b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

project16.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
def test_password(crypted_password):
77
salt = crypted_password[0:2]
88

9-
file_obj = open('dictitionary.txt','r')
9+
file_obj = open('dictionary.txt','r')
1010
for word in file_obj.readlines():
1111
word = word.split('\n')
1212
crypt_pass = crypt.crypt(word, salt)
@@ -27,4 +27,4 @@ def main():
2727

2828

2929
if __name__ == '__main__':
30-
main()
30+
main()

0 commit comments

Comments
 (0)