summaryrefslogtreecommitdiff
path: root/fabfile.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-05-22 10:51:02 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-05-22 10:51:02 -0700
commit5369c9ac29aa460cd05435281037bfbdbee16536 (patch)
tree9f10f003667ebb329f2057ea4ecc1e5a9c96cd19 /fabfile.py
parentb513c16d61bbded9cdab06238f8fcb1c03963217 (diff)
downloadcmd2-git-5369c9ac29aa460cd05435281037bfbdbee16536.tar.gz
Updated fabfile to use CHANGES.md instead of CHANGES.rst
Diffstat (limited to 'fabfile.py')
-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)