You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2012/10/04 05:27:34 UTC

svn commit: r1393903 - /subversion/trunk/tools/server-side/svnpubsub/irkerbridge.py

Author: breser
Date: Thu Oct  4 03:27:33 2012
New Revision: 1393903

URL: http://svn.apache.org/viewvc?rev=1393903&view=rev
Log:
* subversion/tools/servers-side/svnpubsub/irkerbridge.py
  (comment): Fix a small typo.
  (locate_matching_configs): Fix the off by one error on the section split.

Modified:
    subversion/trunk/tools/server-side/svnpubsub/irkerbridge.py

Modified: subversion/trunk/tools/server-side/svnpubsub/irkerbridge.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/server-side/svnpubsub/irkerbridge.py?rev=1393903&r1=1393902&r2=1393903&view=diff
==============================================================================
--- subversion/trunk/tools/server-side/svnpubsub/irkerbridge.py (original)
+++ subversion/trunk/tools/server-side/svnpubsub/irkerbridge.py Thu Oct  4 03:27:33 2012
@@ -80,7 +80,7 @@ import traceback
 import signal
 from string import Template
 
-# Packages that come with svnsubpub
+# Packages that come with svnpubsub
 import svnpubsub.client
 import daemonize
 
@@ -116,7 +116,7 @@ class BigDoEverythingClass(object):
     result = [ ]
     for section in self.config.sections():
       sys.stdout.flush()
-      section_list = section.split('/', 2)
+      section_list = section.split('/', 1)
       if len(section_list) < 2:
         # No slash so assume all paths
         section_list.append('')