Author: gstein
Date: Fri Mar 2 20:06:30 2012
New Revision: 1296427
URL: http://svn.apache.org/viewvc?rev=1296427&view=rev
Log:
Match an instance variable name to its semantic.
* tools/server-side/svnpubsub/svnpubsub/client.py:
(Revision.__init__): the repository identifier is the UUID
Modified:
subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py
Modified: subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py?rev=1296427&r1=1296426&r2=1296427&view=diff
==============================================================================
--- subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py (original)
+++ subversion/trunk/tools/server-side/svnpubsub/svnpubsub/client.py Fri Mar 2
20:06:30 2012
@@ -145,8 +145,8 @@ class XMLStreamHandler(xml.sax.handler.C
class Revision(object):
- def __init__(self, repos, rev):
- self.repos = repos
+ def __init__(self, uuid, rev):
+ self.uuid = uuid
self.rev = rev
self.dirs_changed = [ ]
self.author = None