* morituri/rip/main.py:

* morituri/rip/image.py (added):
	  Add command to verify an image.
	* morituri/common/program.py:
	* morituri/rip/cd.py:
	  Fix AccurateRip checksum output.
This commit is contained in:
Thomas Vander Stichele
2009-06-16 21:09:27 +00:00
parent 0e07a721d1
commit efdc830893
5 changed files with 73 additions and 5 deletions

View File

@@ -4,7 +4,7 @@
import sys
from morituri.common import log, logcommand
from morituri.rip import cd, offset, drive
from morituri.rip import cd, offset, drive, image
def main(argv):
c = Rip()
@@ -32,7 +32,7 @@ Rip gives you a tree of subcommands to work with.
You can get help on subcommands by using the -h option to the subcommand.
"""
subCommandClasses = [cd.CD, drive.Drive, offset.Offset, ]
subCommandClasses = [cd.CD, drive.Drive, offset.Offset, image.Image, ]
def addOptions(self):
# FIXME: is this the right place ?