summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fabfile.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/fabfile.py b/fabfile.py
index 52345929..88921550 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -80,11 +80,11 @@ def release_check():
if 'a' in env.version:
print("WARNING: alpha release %s" % env.version)
- # hacky CHANGES.rst check
- with open("CHANGES.rst") as f:
+ # hacky CHANGES.md check
+ with open("CHANGES.md") as f:
raw_changes = f.read()
assert "%s\n---" % env.version in raw_changes, \
- "The current version %s is not in CHANGES.rst" % env.version
+ "The current version %s is not in CHANGES.md" % env.version
if env.version in tags:
raise Exception("Already released v. %r" % env.version)