Browse Source

`super()` arguments are useless with Python3

pull/188/head
Louis 9 years ago
parent
commit
bb707a866b
  1. 2
      patacrep/build.py
  2. 2
      patacrep/content/__init__.py
  3. 16
      patacrep/errors.py

2
patacrep/build.py

@ -40,7 +40,7 @@ class Songbook(object):
"""
def __init__(self, raw_songbook, basename):
super(Songbook, self).__init__()
super().__init__()
self.config = raw_songbook
self.basename = basename
# Some special keys have their value processed.

2
patacrep/content/__init__.py

@ -123,7 +123,7 @@ class Content(object):
class ContentError(SongbookError):
"""Error in a content plugin."""
def __init__(self, keyword, message):
super(ContentError, self).__init__()
super().__init__()
self.keyword = keyword
self.message = message

16
patacrep/errors.py

@ -11,7 +11,7 @@ class SBFileError(SongbookError):
"""Error during songbook file decoding"""
def __init__(self, message=None):
super(SBFileError, self).__init__()
super().__init__()
self.message = message
def __str__(self):
@ -21,7 +21,7 @@ class TemplateError(SongbookError):
"""Error during template generation"""
def __init__(self, original, message=None):
super(TemplateError, self).__init__()
super().__init__()
self.original = original
self.message = message
@ -35,7 +35,7 @@ class ExecutableNotFound(SongbookError):
"""Couldn't find a LaTeX executable."""
def __init__(self, executable):
super(ExecutableNotFound, self).__init__(
super().__init__(
(
"""Could not find the following executable: {executable}"""
).format(executable=executable)
@ -45,7 +45,7 @@ class StepError(SongbookError):
"""Error during execution of one compilation step."""
def __init__(self, message):
super(StepError, self).__init__()
super().__init__()
self.message = message
def __str__(self):
@ -55,7 +55,7 @@ class LatexCompilationError(StepError):
"""Error during LaTeX compilation."""
def __init__(self, basename):
super(LatexCompilationError, self).__init__(
super().__init__(
(
"""Error while LaTeX compilation of "{basename}.tex" """
"""(see {basename}.log for more information)."""
@ -66,7 +66,7 @@ class StepCommandError(StepError):
"""Error during custom command compilation."""
def __init__(self, command, code):
super(StepCommandError, self).__init__((
super().__init__((
"""Error while running custom command "{command}": got return"""
" code {code}."
).format(command=command, code=code))
@ -76,7 +76,7 @@ class CleaningError(SongbookError):
"""Error during cleaning of LaTeX auxiliary files."""
def __init__(self, filename, exception):
super(CleaningError, self).__init__()
super().__init__()
self.filename = filename
self.exception = exception
@ -90,7 +90,7 @@ class UnknownStep(StepError):
"""Unknown compilation step."""
def __init__(self, step):
super(UnknownStep, self).__init__(
super().__init__(
"""Compilation step "{step}" unknown.""".format(step=step)
)

Loading…
Cancel
Save