diff options
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/docs.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/wqflask/wqflask/docs.py b/wqflask/wqflask/docs.py index 1dbbabea..afa1fec8 100644 --- a/wqflask/wqflask/docs.py +++ b/wqflask/wqflask/docs.py @@ -23,11 +23,12 @@ class Docs(object): self.content = result[1] self.editable = "false" - try: - if g.user_session.record['user_email_address'] == "zachary.a.sloan@gmail.com" or g.user_session.record['user_email_address'] == "labwilliams@gmail.com": - self.editable = "true" - except: - pass + # ZS: Removing option to edit to see if text still gets vandalized + # try: + # if g.user_session.record['user_email_address'] == "zachary.a.sloan@gmail.com" or g.user_session.record['user_email_address'] == "labwilliams@gmail.com": + # self.editable = "true" + # except: + # pass def update_text(start_vars): |