Update morituri references in inline documentation.

This commit is contained in:
Frederik “Freso” S. Olesen
2017-01-12 18:30:49 +01:00
parent ff309e468c
commit cb0042c832
5 changed files with 5 additions and 5 deletions

View File

@@ -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",

View File

@@ -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",

View File

@@ -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'

View File

@@ -21,7 +21,7 @@
# along with whipper. If not, see <http://www.gnu.org/licenses/>.
"""
Common functionality and class for all programs using morituri.
Common functionality and class for all programs using whipper.
"""
import musicbrainzngs

View File

@@ -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