* morituri/rip/Makefile.am:

* morituri/rip/main.py:
	* morituri/rip/cd.py (added):
	  Add second command, 'rip cd rip' before factoring out functionality.
This commit is contained in:
Thomas Vander Stichele
2009-05-23 10:03:51 +00:00
parent 9e3e1d53cb
commit da8145798d
4 changed files with 394 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
import sys
from morituri.common import log, logcommand
from morituri.rip import offset
from morituri.rip import cd, offset
def main(argv):
c = Rip()
@@ -31,7 +31,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 = [offset.Offset, ]
subCommandClasses = [cd.CD, offset.Offset, ]
def addOptions(self):
# FIXME: is this the right place ?