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, ]