Skip to content

Commit

Permalink
fix gitlab image dict crash
Browse files Browse the repository at this point in the history
  • Loading branch information
funkecoder23 authored and funkecoder23 committed Jun 27, 2024
1 parent 325fb58 commit d5180b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scuba/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def from_dict(
return cls(
name=name,
script=script,
image=node.get("image"),
image=_get_str(node, "image"),
entrypoint=_get_entrypoint(node),
environment=_process_environment(
node.get("environment"), f"{name}.environment"
Expand Down

0 comments on commit d5180b5

Please sign in to comment.