Skip to content

Commit e8dac94

Browse files
authored
Fix push_images call to use a list for target_tag
1 parent 52b1be5 commit e8dac94

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ddiff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def pull_images(tags):
252252

253253
def diff_image(base_tag, target_tag):
254254
push_images([base_tag], from_docker_hub=True)
255-
push_images(target_tag)
255+
push_images([target_tag])
256256

257257
base_tag = _prepare_tag(base_tag)
258258
target_tag = _prepare_tag(target_tag)

0 commit comments

Comments
 (0)