From cb0042c83298256cb211216769f02af5a443c9c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20=E2=80=9CFreso=E2=80=9D=20S=2E=20Olesen?= Date: Thu, 12 Jan 2017 18:30:49 +0100 Subject: [PATCH] Update morituri references in inline documentation. --- whipper/command/basecommand.py | 2 +- whipper/command/cd.py | 2 +- whipper/common/encode.py | 2 +- whipper/common/program.py | 2 +- whipper/program/flac.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/whipper/command/basecommand.py b/whipper/command/basecommand.py index 8e96a21..86c419f 100644 --- a/whipper/command/basecommand.py +++ b/whipper/command/basecommand.py @@ -67,7 +67,7 @@ class BaseCommand(): if not drives: msg = 'No CD-DA drives found!' logger.critical(msg) - # morituri exited with return code 3 here + # whipper exited with return code 3 here raise IOError(msg) self.parser.add_argument('-d', '--device', action="store", diff --git a/whipper/command/cd.py b/whipper/command/cd.py index 937d846..c01fb3a 100644 --- a/whipper/command/cd.py +++ b/whipper/command/cd.py @@ -274,7 +274,7 @@ Log files will log the path to tracks relative to this directory. help="output directory; will be included in file paths in log") self.parser.add_argument('-W', '--working-directory', action="store", dest="working_directory", - help="working directory; morituri will change to this directory " + help="working directory; whipper will change to this directory " "and files will be created relative to it when not absolute") self.parser.add_argument('--track-template', action="store", dest="track_template", diff --git a/whipper/common/encode.py b/whipper/common/encode.py index 062ee39..b76f5dc 100644 --- a/whipper/common/encode.py +++ b/whipper/common/encode.py @@ -65,7 +65,7 @@ class FlacEncodeTask(task.Task): # TODO: Wizzup: Do we really want this as 'Task'...? # I only made it a task for now because that it's easier to integrate in -# program/cdparanoia.py - where morituri currently does the tagging. +# program/cdparanoia.py - where whipper currently does the tagging. # We should just move the tagging to a more sensible place. class TaggingTask(task.Task): description = 'Writing tags to FLAC' diff --git a/whipper/common/program.py b/whipper/common/program.py index e8a4721..1d0d2cb 100644 --- a/whipper/common/program.py +++ b/whipper/common/program.py @@ -21,7 +21,7 @@ # along with whipper. If not, see . """ -Common functionality and class for all programs using morituri. +Common functionality and class for all programs using whipper. """ import musicbrainzngs diff --git a/whipper/program/flac.py b/whipper/program/flac.py index d83162b..1db961d 100644 --- a/whipper/program/flac.py +++ b/whipper/program/flac.py @@ -6,7 +6,7 @@ logger = logging.getLogger(__name__) def encode(infile, outfile): """ Encodes infile to outfile, with flac. - Uses '-f' because morituri already creates the file. + Uses '-f' because whipper already creates the file. """ try: # TODO: Replace with Popen so that we can catch stderr and write it to