Browse Source

pylint

pull/58/head
Louis 11 years ago
parent
commit
79666c4d3c
  1. 8
      patacrep/build.py
  2. 2
      patacrep/content/tex.py
  3. 2
      patacrep/index.py

8
patacrep/build.py

@ -149,7 +149,9 @@ class SongbookBuilder(object):
if not self.interactive:
self._pdflatex_options.append("-halt-on-error")
for datadir in self.songbook.config["datadir"]:
self._pdflatex_options.append('--include-directory="{}"'.format(datadir))
self._pdflatex_options.append(
'--include-directory="{}"'.format(datadir)
)
def build_steps(self, steps=None):
"""Perform steps on the songbook by calling relevant self.build_*()
@ -202,8 +204,8 @@ class SongbookBuilder(object):
stdout=PIPE,
stderr=PIPE,
env=os.environ)
except Exception as e:
LOGGER.debug(e)
except Exception as error:
LOGGER.debug(error)
raise errors.LatexCompilationError(self.basename)
if not self.interactive:

2
patacrep/content/tex.py

@ -40,7 +40,7 @@ def parse(keyword, argument, contentlist, config):
filelist = []
basefolders = [path.fullpath for path in config['_songdir']] +\
config['datadir'] + \
[ os.path.join(path, "latex") for path in config['datadir']]
[os.path.join(path, "latex") for path in config['datadir']]
for filename in contentlist:
checked_file = None
for path in basefolders:

2
patacrep/index.py

@ -75,7 +75,7 @@ class Index(object):
try:
letter = FIRST_LETTER_PATTERN.match(key).group(1)
except AttributeError:
# classify as number all the non letter characters
# classify as number all the non letter characters
letter = "0"
if re.match(ur'\d', letter):
letter = '0-9'

Loading…
Cancel
Save