diff options
author | terminaldweller <thabogre@gmail.com> | 2021-08-05 05:14:10 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-08-05 05:14:10 +0000 |
commit | 5f596a3f401a0a40eefcc0f8b6c6b5083748cc1a (patch) | |
tree | a892e31077574f1c1a340af257bb6e27ae0ad89c /git | |
parent | update for neomutt (diff) | |
download | scripts-5f596a3f401a0a40eefcc0f8b6c6b5083748cc1a.tar.gz scripts-5f596a3f401a0a40eefcc0f8b6c6b5083748cc1a.zip |
a lot of updates and fixes
Diffstat (limited to '')
-rwxr-xr-x | git/wipe_irssi_passwords | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/wipe_irssi_passwords b/git/wipe_irssi_passwords index 26e9d58..69da189 100755 --- a/git/wipe_irssi_passwords +++ b/git/wipe_irssi_passwords @@ -5,7 +5,7 @@ import re def main(): - with open("./config", "r") as config_file: + with open("/home/devi/.irssi/config", "r") as config_file: lines = config_file.readlines() for line in lines: print(re.sub("password\\s*=\\s*\"(.*)\"", |