Added gitignore and modified password
Showing
3 changed files
with
5 additions
and
1 deletions
.gitignore
0 → 100644
1 | releasepw.conf | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -21,6 +21,9 @@ for f in os.listdir('rooms'): | ... | @@ -21,6 +21,9 @@ for f in os.listdir('rooms'): |
21 | for f in os.listdir('inventory'): | 21 | for f in os.listdir('inventory'): |
22 | files.append('inventory/' + f) | 22 | files.append('inventory/' + f) |
23 | 23 | ||
24 | with open(filename, 'r', encoding='utf-8') as f: | ||
25 | pw = f.read() | ||
26 | with open('releasepw.conf', 'r') | ||
24 | password = sys.argv[1] | 27 | password = sys.argv[1] |
25 | 28 | ||
26 | for file in files: | 29 | for file in files: | ... | ... |
-
Please register or sign in to post a comment