Merge pull request #3449 from Andrey9kin/ready/3281
Fix #3281: Unexpected result when using build args with default values
This commit is contained in:
commit
21f20cbc9b
2 changed files with 30 additions and 2 deletions
|
|
@ -95,4 +95,4 @@ def microseconds_from_time_nano(time_nano):
|
|||
|
||||
|
||||
def build_string_dict(source_dict):
|
||||
return dict((k, str(v)) for k, v in source_dict.items())
|
||||
return dict((k, str(v if v is not None else '')) for k, v in source_dict.items())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue