From e2a1ab08c7493ec8b8d62988a60c961af7a00e96 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sat, 21 May 2011 16:05:12 +0000 Subject: [PATCH] * morituri/rip/image.py: Document image subcommand. Fixes #61. --- ChangeLog | 5 +++++ morituri/rip/image.py | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 79e8594..d1c3fae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-05-21 Thomas Vander Stichele + + * morituri/rip/image.py: + Document image subcommand. Fixes #61. + 2011-05-21 Thomas Vander Stichele * morituri/test/Makefile.am: diff --git a/morituri/rip/image.py b/morituri/rip/image.py index 98f8b88..346438e 100644 --- a/morituri/rip/image.py +++ b/morituri/rip/image.py @@ -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, ]