summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--store.py2
-rw-r--r--tasks.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/store.py b/store.py
index e1e9f55..9fa8e9e 100644
--- a/store.py
+++ b/store.py
@@ -2318,7 +2318,7 @@ class Store:
self.config.fastly_api_domain,
self.config.fastly_api_key,
self.config.fastly_service_id,
- *tags
+ tags,
)
# Empty our changed packages
diff --git a/tasks.py b/tasks.py
index dab4427..4ca2406 100644
--- a/tasks.py
+++ b/tasks.py
@@ -3,7 +3,7 @@ import urlparse
import requests
-def purge_fastly_tags(domain, api_key, service_id, *tags, max_tries=25):
+def purge_fastly_tags(domain, api_key, service_id, tags, max_tries=25):
session = requests.session()
headers = {"X-Fastly-Key": api_key, "Accept": "application/json"}