summaryrefslogtreecommitdiffstats
path: root/mod/distributorapi/distributor/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'mod/distributorapi/distributor/utils.py')
-rw-r--r--mod/distributorapi/distributor/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/distributorapi/distributor/utils.py b/mod/distributorapi/distributor/utils.py
index 7457d5a..c8449bf 100644
--- a/mod/distributorapi/distributor/utils.py
+++ b/mod/distributorapi/distributor/utils.py
@@ -1,5 +1,5 @@
# ============LICENSE_START=======================================================
-# Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2019-2022 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@ def urljoin(base, *trailing, **query_params):
url = "/".join(full)
if query_params:
- qp = ["{0}={1}".format(quote(k), quote(str(v))) for k,v in query_params.items()]
+ qp = ["{0}={1}".format(quote(k), quote(str(v))) for k, v in query_params.items()]
qp = "&".join(qp)
return "?".join([url, qp])
else: