Merge pull request #881 from poinck/patch-1

native_messenger: fix invalid syntax
This commit is contained in:
Oliver Blanthorn 2018-07-30 19:04:40 +01:00 committed by GitHub
commit 5e0c8243f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -95,7 +95,7 @@ def findUserConfigFile():
candidate_files = [ candidate_files = [
os.path.join(config_dir, "tridactyl", "tridactylrc"), os.path.join(config_dir, "tridactyl", "tridactylrc"),
os.path.join(home, ".tridactylrc"), os.path.join(home, ".tridactylrc"),
os.path.join(home, , "_config", "tridactyl", "tridactylrc"), os.path.join(home, "_config", "tridactyl", "tridactylrc"),
os.path.join(home, "_tridactylrc"), os.path.join(home, "_tridactylrc"),
] ]