From ad5c5bb0188c4b720a844700798042d3c9788f5a 2005-08-11 18:34:18 From: fperez Date: 2005-08-11 18:34:18 Subject: [PATCH] Fixed log hook to check against HEAD so the email is more informative. --- diff --git a/tools/ipsvnc b/tools/ipsvnc index a38bb51..e0ef57c 100755 --- a/tools/ipsvnc +++ b/tools/ipsvnc @@ -43,7 +43,7 @@ svnargs = ' '.join(svnargs) # perform commit os.system('svn commit %s' % svnargs) svntime = time.asctime() -svnstatus = commands.getoutput('svn log -r COMMITTED') +svnstatus = commands.getoutput('svn log -r HEAD') # Confirm with user (trying to get the status from the svn commit blocks # silently, I don't care to debug it)