Re: Bug in tools/server-side/svnpubsub/svnwcsub.py

2018-05-25 Thread sebb
On 25 May 2018 at 14:37, Daniel Shahaf wrote: > sebb wrote on Fri, 25 May 2018 14:14 +0100: >> The following fails because fname is not defined: >> >> self.read(fname) [1] >> >> it should be >> >> self.read(self.fname) > > Thanks for the report. OK. > With that change, the [DEFAULT] section does

Re: Bug in tools/server-side/svnpubsub/svnwcsub.py

2018-05-25 Thread Daniel Shahaf
sebb wrote on Fri, 25 May 2018 14:14 +0100: > The following fails because fname is not defined: > > self.read(fname) [1] > > it should be > > self.read(self.fname) Thanks for the report. With that change, the [DEFAULT] section doesn't get emptied by reload(). Would you like to send a patch th

Bug in tools/server-side/svnpubsub/svnwcsub.py

2018-05-25 Thread sebb
The following fails because fname is not defined: self.read(fname) [1] it should be self.read(self.fname) [1] http://svn.apache.org/viewvc/subversion/trunk/tools/server-side/svnpubsub/svnwcsub.py?view=markup#l378