From: <te...@us...> - 2003-07-11 10:37:24
|
Update of /cvsroot/quickrip/quickrip In directory sc8-pr-cvs1:/tmp/cvs-serv24220 Modified Files: cli.py Log Message: Put the output code back in (it makes the text much nicer :) Index: cli.py =================================================================== RCS file: /cvsroot/quickrip/quickrip/cli.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** cli.py 21 Jun 2003 16:24:10 -0000 1.10 --- cli.py 11 Jul 2003 10:37:21 -0000 1.11 *************** *** 10,19 **** """ try: ! import sys, os, re ! except ImportError: ! print "Unable to import any of sys, os, re modules" ! raise SystemExit ! ! from dvd import * # QuickRip global configuration. [...1118 lines suppressed...] ! sys.stdout.flush() ! sys.stdout.write("\b" * (7+n)) ! def int_finishRipping(self): ! #print "" ! print "\n* Ripping finished\nPress enter to return to main menu" ! try: ! null = raw_input() ! del null ! except KeyboardInterrupt: ! print "\n\nExiting..." ! sys.exit(2) ! self.main("toplevel") def main(): ! #print "QuickRip v0.6, (C) Tom Chance, 2003" ! print "%s v%s, %s\n" % (__app__, __version__, __copyright__) ! cli = CLI() ! cli.main() |