Merge pull request #3449 from Andrey9kin/ready/3281

Fix #3281: Unexpected result when using build args with default values
This commit is contained in:
Aanand Prasad 2016-06-14 08:05:07 -07:00 committed by GitHub
commit 21f20cbc9b
2 changed files with 30 additions and 2 deletions

View file

@ -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())