Browse Source

Correct comment and force duplication

pull/207/head
Oliverpool 9 years ago
parent
commit
d356b55a40
  1. 6
      patacrep/content/cd.py

6
patacrep/content/cd.py

@ -31,11 +31,11 @@ def parse(keyword, config, argument):
If 'yaml_as_root' is not set the 'path' is added as a relative path to If 'yaml_as_root' is not set the 'path' is added as a relative path to
every path already present in config['songdir'] (which are 'songs' dir every path already present in config['songdir'] (which are 'songs' dir
inside the datadirs). inside the datadirs).
Otherwise only the 'path' folder of the yaml file is insert as first Otherwise only the 'path' folder of the yaml file is inserted as first
folder to search into. folder to the `songdir` list.
""" """
subpath = argument['path'] subpath = argument['path']
old_songdir = config['_songdir'] old_songdir = list(config['_songdir']) # force list duplication
if argument.get('yaml_as_root', False): if argument.get('yaml_as_root', False):
config['_songdir'].insert(0, DataSubpath(config['_songbookfile_dir'], subpath)) config['_songdir'].insert(0, DataSubpath(config['_songbookfile_dir'], subpath))

Loading…
Cancel
Save