Skip to content
Snippets Groups Projects
Commit 026c5e1b authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix reading secrets file under windows. Fixes #8118

parent 08b362ec
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ class Secrets():
return pk
def load_secrets(filename):
f = open(filename, 'rb')
f = open(filename, 'r')
try:
secrets = pickle.load(f, encoding='latin1')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment