Skip to content

Commit

Permalink
Merge pull request conda#9748 from forrestwaters/fw_conflicts_traceback
Browse files Browse the repository at this point in the history
account for channel in specs
  • Loading branch information
jjhelmus authored Mar 11, 2020
2 parents e9a5056 + 2f5ec9a commit fc94eac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda/models/match_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def _merge(self, other, union=False):
if union:
try:
final = this_component.union(that_component)
except (AttributeError, ValueError):
except (AttributeError, ValueError, TypeError):
final = '%s|%s' % (this_component, that_component)
else:
final = this_component.merge(that_component)
Expand Down

0 comments on commit fc94eac

Please sign in to comment.