On Tue, December 30, 2008 7:56 pm, SourceForge.net wrote:
Initial Comment: This allows the use of the sysop account to be forced; useful for eg closing XfD discussions where for transparency the admin account must be seen to make the change.
Changes:
wikipedia.py: @@ line 1326: -- force=False): ++ force=False, sysop=sysop):
@@ line 1342: -- sysop = self._getActionUser(action = 'edit', restriction = self.editRestriction, sysop = False) ++ sysop = self._getActionUser(action = 'edit', restriction = self.editRestriction, sysop = sysop)
Default behavior is unchanged.
Shouldn't the first change be from force=False): to force=False, sysop=False): instead of force=False, sysop=sysop): ?