devopshq / tfs

Microsoft TFS API Python client
https://devopshq.github.io/tfs/
MIT License
110 stars 28 forks source link

Error in Workitem.add_relations_raw(...) caused by wrong parameter order. #82

Closed phispi closed 4 years ago

phispi commented 4 years ago

Parameters were switched when calling Workitem.__init__(...) from Workitem.add_relations_raw(...) causing an error. The solution is to either switch the order of the parameters or (as proposed in this pull request) use keyword arguments.

allburov commented 4 years ago

@phispi sorry for the long answer. Thanks you!