Skip to content

Commit

Permalink
make python 2 3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-vk committed Dec 1, 2022
1 parent 11ecfdd commit c49d40d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfile_parse/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def parent_images(self):
in_stage = True
image, _ = image_from(instr['value'])
if image is not None:
image = WordSplitter(b2u(image.to_str()), args=top_args).dequote()
image = WordSplitter(image.to_str(), args=top_args).dequote()
parents.append(image)
return parents

Expand Down

0 comments on commit c49d40d

Please sign in to comment.