[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Fix typo in mailer.py

From: Chris Foote <foote_chris_at_yahoo.com>
Date: 2003-01-09 17:25:07 CET

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

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.