From 4a92d5c624fcb4b45894a0e37e9f5008c7afb070 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sun, 16 Sep 2018 14:42:00 +0100 Subject: [PATCH] Correct a spelling mistake. --- firefly/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firefly/app.py b/firefly/app.py index 8df4809..43cf4ac 100644 --- a/firefly/app.py +++ b/firefly/app.py @@ -47,7 +47,7 @@ def set_auth_token(self, token): self.auth_token = token def set_allowed_origins(self, allowed_origins): - # Also support mutliple origins as a list. + # Also support multiple origins as a list. if isinstance(allowed_origins, list): allowed_origins = ", ".join(allowed_origins) self.allowed_origins = allowed_origins or ""