changeset 382:b6047c200708

push: Prevent pushing of edits to .hgtags to svn.
author Augie Fackler <durin42@gmail.com>
date Sat, 30 May 2009 20:55:21 -0500
parents a441ba143ac8
children 987bd7444f60
files hgsubversion/cmdutil.py
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/cmdutil.py
+++ b/hgsubversion/cmdutil.py
@@ -190,7 +190,9 @@ def commit_from_rev(ui, repo, rev_ctx, h
     props = {}
     copies = {}
     for file in rev_ctx.files():
-        if file == '.hgsvnexternals':
+        if file in ('.hgsvnexternals',
+                    '.hgtags',
+                    ):
             continue
         new_data = base_data = ''
         action = ''