Fixed filename quotes in error output
1 parent 2afc8f6 commit f1858fdf69e4c417519037a2d594fb81f6f5b1ea
Nigel Stanger authored on 22 Jul 2021
Showing 1 changed file
View
12
calendar/teachingdates/app.py
print(cal.render(args.style, args.format))
 
except configuration.ConfigurationError as e:
print("{prog}: error: failed to load configuration from "
"'{file}'".format(prog=PROG, file=e))
"{file}".format(prog=PROG, file=e))
except configuration.PaperKeyError as e:
print("{prog}: error: paper '{paper}' in '{file}' is missing "
print("{prog}: error: paper '{paper}' in {file} is missing "
"required key '{key}'".format(prog=PROG,
paper=e.parent,
file=e.file,
key=e.key))
except configuration.PeriodKeyError as e:
print("{prog}: error: teaching period '{period}' in '{file}' is "
print("{prog}: error: teaching period '{period}' in {file} is "
"missing required key '{key}'".format(prog=PROG,
period=e.parent,
file=e.file,
key=e.key))
except configuration.PaperError as e:
print("{prog}: error: no entry for paper '{paper}' ({period}) in "
"'{file}.'".format(prog=PROG,
"{file}.".format(prog=PROG,
file=e,
paper=args.paper,
period=args.period))
except configuration.PeriodError as e:
print("{prog}: error: no entry for teaching period '{period}' in "
"'{file}'".format(prog=PROG, file=e, period=args.period))
"{file}".format(prog=PROG, file=e, period=args.period))
except TemplateNotFound as e:
print("{prog}: error: no template found for output style '{style}' "
"and output format '{format}' (expected '{file}')".format(
"and output format '{format}' (expected {file})".format(
prog=PROG, style=args.style, format=args.format, file=e))