[Cvsshell-devel] CVS: cvsshell/src cvs_shell.py,1.26,1.27
Status: Beta
Brought to you by:
stefanheimann
From: Stefan H. <ste...@us...> - 2002-07-19 11:36:06
|
Update of /cvsroot/cvsshell/cvsshell/src In directory usw-pr-cvs1:/tmp/cvs-serv22719/src Modified Files: cvs_shell.py Log Message: fixed bug that caused arguments separated by newlines to be ignored. Index: cvs_shell.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/cvs_shell.py,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** cvs_shell.py 3 Jun 2002 07:45:22 -0000 1.26 --- cvs_shell.py 19 Jul 2002 11:36:03 -0000 1.27 *************** *** 28,32 **** from plugable_app import PlugableApp ! VERSION = '0.2.1' NAME ='CvsShell' COPYRIGHT = 'Copyright 2002 Stefan Heimann (ma...@st...).\n' \ --- 28,32 ---- from plugable_app import PlugableApp ! VERSION = '0.2.2' NAME ='CvsShell' COPYRIGHT = 'Copyright 2002 Stefan Heimann (ma...@st...).\n' \ *************** *** 64,68 **** (?P<opts>.*) # the options of the command )? # options are optional ! """, re.VERBOSE) self.cvsChangeCmdRE = re.compile(r"""\s+ (ad(d)?|new|ci|com(mit)?|delete|remove) --- 64,68 ---- (?P<opts>.*) # the options of the command )? # options are optional ! """, re.VERBOSE | re.DOTALL) self.cvsChangeCmdRE = re.compile(r"""\s+ (ad(d)?|new|ci|com(mit)?|delete|remove) |