From 914747b3ac7608b80297ee24c4006b357a61be19 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Wed, 6 Nov 2019 14:14:52 +0100 Subject: [PATCH] Change iteritems to items for Python 3 --- templates/.composer/auth.json.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/.composer/auth.json.j2 b/templates/.composer/auth.json.j2 index 7ff0344..f5bb15f 100644 --- a/templates/.composer/auth.json.j2 +++ b/templates/.composer/auth.json.j2 @@ -1,7 +1,7 @@ { {% if composer_http_basic %} "http-basic": { - {% for repository,credentials in composer_http_basic.iteritems() %} + {% for repository,credentials in composer_http_basic.items() %} {% if loop.index0 %},{% endif %} "{{ repository }}": { "username": "{{ credentials.username }}", -- GitLab