From 82e56616dd86e51b4b5ab212721ebd1c24e5127e Mon Sep 17 00:00:00 2001 From: Tommy McClung Date: Mon, 5 Oct 2020 15:32:12 -0700 Subject: [PATCH] docs vs no docs --- result/views/index.html | 4 ++-- vote/app.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/result/views/index.html b/result/views/index.html index 4427ffa1af..3a5e8ae649 100644 --- a/result/views/index.html +++ b/result/views/index.html @@ -20,12 +20,12 @@
-
Cats
+
Docs
{{aPercent | number:1}}%
-
Dogs
+
No Docs
{{bPercent | number:1}}%
diff --git a/vote/app.py b/vote/app.py index 1d194b649b..6481d86e54 100644 --- a/vote/app.py +++ b/vote/app.py @@ -5,8 +5,8 @@ import random import json -option_a = os.getenv('OPTION_A', "Cats") -option_b = os.getenv('OPTION_B', "Dogs") +option_a = os.getenv('OPTION_A', "Docs") +option_b = os.getenv('OPTION_B', "No Docs") hostname = socket.gethostname() app = Flask(__name__)