Better ask forgiveness than permission

pull/1312/head
sharkdp 4 years ago
parent 62e715ff5b
commit bf87f37039

@ -24,12 +24,15 @@ SKIP_FILENAMES = [
def get_options(source):
source_dirpath = path.dirname(source)
options = BAT_OPTIONS.copy()
source_dirpath = path.dirname(source)
options_file = path.join(source_dirpath, "bat_options")
if path.exists(options_file):
try:
with open(options_file, "r") as f:
options += list(map(lambda x: x.rstrip(), f.readlines()))
except FileNotFoundError:
pass
return options

Loading…
Cancel
Save