diff --git a/fabfile.py b/fabfile.py index 52345929f..88921550b 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)