diff --git a/wa/utils/types.py b/wa/utils/types.py index 213668d5..17282f8d 100644 --- a/wa/utils/types.py +++ b/wa/utils/types.py @@ -454,10 +454,10 @@ class toggle_set(set): class ID(str): def merge_with(self, other): - return '_'.join(self, other) + return '_'.join([self, other]) def merge_into(self, other): - return '_'.join(other, self) + return '_'.join([other, self]) class obj_dict(MutableMapping):