Browse Source

ensure that the library path ends with a slash

remotes/origin/HEAD
Romain Goffe 12 years ago
parent
commit
2a1b104aec
  1. 2
      songbook.py

2
songbook.py

@ -240,6 +240,8 @@ def main():
elif o in ("-o", "--output"):
output = a
elif o in ("-l", "--library"):
if not a.endswith('/'):
a += '/'
library = a
else:
assert False, "unhandled option"

Loading…
Cancel
Save