Browse Source

Add a default value for the '--cache' option

When option is given several times, use the last argument provided
pull/158/head
Louis 9 years ago
parent
commit
bdef0b1e01
  1. 3
      patacrep/songbook/__main__.py

3
patacrep/songbook/__main__.py

@ -85,6 +85,7 @@ def argument_parser(args):
Enable song cache. Enable song cache.
"""), """),
type=yesno_type, type=yesno_type,
default=[True],
) )
parser.add_argument( parser.add_argument(
@ -126,7 +127,7 @@ def main():
options = argument_parser(sys.argv[1:]) options = argument_parser(sys.argv[1:])
songbook_path = options.book[0] songbook_path = options.book[-1]
if os.path.exists(songbook_path + ".sb") and not os.path.exists(songbook_path): if os.path.exists(songbook_path + ".sb") and not os.path.exists(songbook_path):
songbook_path += ".sb" songbook_path += ".sb"

Loading…
Cancel
Save