Hi,
This patch fixs a problem with the mailer.py hook script that I
found while playing with Gregs new changes.
Regards,
Chris
Log:
* mailer.py:
(ChangeCollector.change_dir_prop): Fix typo in key to changes
dictionary.
Index: tools/hook-scripts/mailer.py
===================================================================
--- tools/hook-scripts/mailer.py (revision 4305)
+++ tools/hook-scripts/mailer.py (working copy)
@@ -236,13 +236,13 @@
self.changes[dir_path].prop_changes = True
else:
# can't be added or deleted, so this must be CHANGED
- self.changes[dir_baton] = _change(ChangeCollector.DIR,
- True,
- dir_baton[1], # base_path
- dir_baton[2], # base_rev
- dir_path, # path
- False, # added
- )
+ self.changes[dir_path] = _change(ChangeCollector.DIR,
+ True,
+ dir_baton[1], # base_path
+ dir_baton[2], # base_rev
+ dir_path, # path
+ False, # added
+ )
def add_file(self, path, parent_baton,
copyfrom_path, copyfrom_revision, file_pool):
__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Jan 9 18:07:38 2003