Update of /cvsroot/cvsshell/cvsshell/src
In directory usw-pr-cvs1:/tmp/cvs-serv18467
Modified Files:
cvs_shell.py
Log Message:
forget `self' as 1st param for execShellCommand
Index: cvs_shell.py
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/src/cvs_shell.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** cvs_shell.py 7 Mar 2002 12:21:56 -0000 1.3
--- cvs_shell.py 7 Mar 2002 12:23:09 -0000 1.4
***************
*** 75,79 ****
_cvsChangeCmdRE = re.compile(r'\s+(ad(d)?|new|ci|com(mit)?|delete|remove)\s+')
! def execShellCmd(name, opts, context):
app = context['APP']
if name == 'cvs' and _cvsChangeCmdRE.search(opts): # command may change the status
--- 75,79 ----
_cvsChangeCmdRE = re.compile(r'\s+(ad(d)?|new|ci|com(mit)?|delete|remove)\s+')
! def execShellCmd(self, name, opts, context):
app = context['APP']
if name == 'cvs' and _cvsChangeCmdRE.search(opts): # command may change the status
|