From 3806feb67fcb1fe822cfdedddbbc4ca7eeef3829 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 6 Aug 2020 13:09:31 +0200 Subject: [PATCH] During the beta, don't update the wiki automatically --- management/commands/refresh_activities.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/management/commands/refresh_activities.py b/management/commands/refresh_activities.py index dd525d3..c03240f 100644 --- a/management/commands/refresh_activities.py +++ b/management/commands/refresh_activities.py @@ -150,7 +150,7 @@ class Command(BaseCommand): return page, header + body @staticmethod - def refresh_raw_wiki_page(comment="refresh", debug=False): + def refresh_raw_wiki_page(comment="refresh", debug=True): page, content = Command.get_raw_page() if debug: print(content) @@ -158,7 +158,7 @@ class Command(BaseCommand): Command.edit_wiki(page, content, comment) @staticmethod - def refresh_human_readable_wiki_page(comment="refresh", debug=False): + def refresh_human_readable_wiki_page(comment="refresh", debug=True): page, content = Command.get_human_readable_page() if debug: print(content) @@ -172,9 +172,6 @@ class Command(BaseCommand): parser.add_argument("--debug", "-d", action="store_true", help="Don't commit to the wiki, render in stdout") def handle(self, *args, **options): - with open("/tmp/abc", "w") as f: - f.write("lalala") - f.write(str(options)) if options["raw"]: Command.refresh_raw_wiki_page(options["comment"], options["debug"]) if options["human"]: