Update changelog

This commit is contained in:
Griatch 2017-09-20 21:51:43 +02:00
parent 330e292a6e
commit 703dc9da91
2 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,9 @@
# Evennia Changelog
# Sept 2017:
Release of Evennia 0.7; upgrade to Django 1.11, change 'Player' to
'Account', rework the website template and a slew of other updates.
## Feb 2017:
New devel branch created, to lead up to Evennia 0.7.

View file

@ -305,7 +305,7 @@ if __name__ == "__main__":
parser.add_argument('-r', '--recursive', action='store_true',
help="Recurse subdirs")
parser.add_argument('-f', '--fileending', action='append',
help="Change which file endings to allow (default .py)")
help="Change which file endings to allow (default .py and .html)")
parser.add_argument('--nocolor', action='store_true',
help="Turn off in-program color")
parser.add_argument('--fake', action='store_true',
@ -325,7 +325,7 @@ if __name__ == "__main__":
sys.exit()
exc_list = exc_list or []
fileend_list = fileend_list or [".py"]
fileend_list = fileend_list or [".py", ".html"]
is_interactive = not args.auto
is_recursive = args.recursive