# HG changeset patch # User Augie Fackler # Date 1243734921 18000 # Node ID b6047c20070826e64af31c9d2a1cf847e635938c # Parent a441ba143ac8446168d18ddc2050dccef68f863f push: Prevent pushing of edits to .hgtags to svn. diff --git a/hgsubversion/cmdutil.py b/hgsubversion/cmdutil.py --- 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 = ''