You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 29, 2024. It is now read-only.
I patched it and here is how I solved it:
Before: tag_string = ''.join( [",{}={}".format(k, _escape_tag(v)) if v else '' for k, v in sorted(global_tags.items())] )
After: tag_string = ''.join( [",{}={}".format(k, _escape_tag(v)) if v not in [None, ''] else '' for k, v in sorted(global_tags.items())] )
Furthermore, it would be nice to also send a tags even if the value is None. Here is my proposition: tag_string = ''.join( [",{}={}".format(k, _escape_tag(v)) if v not in [None, ''] else ",{}={}".format(k, 'None') for k, v in sorted(global_tags.items())] )