summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorThomas James Alexander Thurman <tthurman@src.gnome.org>2008-10-23 04:32:03 +0000
committerThomas James Alexander Thurman <tthurman@src.gnome.org>2008-10-23 04:32:03 +0000
commit647f75c4e8d9c94c40879789a742729dd9dff3d8 (patch)
tree603b21f6b5ecd58dd2690fbc3a6b33c2e128b91a /tools
parent348795b94d6b0f41fc80676203f34ae66692d19b (diff)
downloadmutter-647f75c4e8d9c94c40879789a742729dd9dff3d8.tar.gz
2.25.5 release.METACITY_2_25_5
svn path=/trunk/; revision=3994
Diffstat (limited to 'tools')
-rw-r--r--tools/release-wrangler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release-wrangler.py b/tools/release-wrangler.py
index 2945fcf2b..548af7fe2 100644
--- a/tools/release-wrangler.py
+++ b/tools/release-wrangler.py
@@ -62,7 +62,7 @@ def check_we_are_up_to_date():
changed = []
for line in commands.getoutput('/usr/bin/svn status').split('\n'):
if line!='' and (line[0]=='C' or line[0]=='M'):
- if line.find('release-wrangler.py')==-1:
+ if line.find('release-wrangler.py')==-1 and line.find('ChangeLog')==-1:
# we should be insensitive to changes in this script itself
# to avoid chicken-and-egg problems
changed.append(line[1:].lstrip())