* 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:
@@ -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 ?
|
||||
|
||||
Reference in New Issue
Block a user