* morituri/rip/image.py:

Document image subcommand.  Fixes #61.
This commit is contained in:
Thomas Vander Stichele
2011-05-21 16:05:12 +00:00
parent 1bc7b4f005
commit e2a1ab08c7
2 changed files with 11 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2011-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/image.py:
Document image subcommand. Fixes #61.
2011-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/test/Makefile.am:

View File

@@ -164,4 +164,10 @@ class Verify(logcommand.LogCommand):
class Image(logcommand.LogCommand):
summary = "handle images"
description = """
Handle disc images. Disc images are described by a .cue file.
Disc images can be encoded to another format (for example, to make a
compressed encoding), retagged and verified.
"""
subCommandClasses = [Encode, Retag, Verify, ]