We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following code (fragment):
client = TFSAPI(server_url=bh_tfs_base_url, project=collection, user=user, password=password, auth_type=HttpNtlmAuth) px = client.run_query("Shared Queries/PX Queries/PX - Priority List") for work_item in px.result.workitems: change_sets_relation = work_item.find_in_relation("ArtifactLink") for changeset_relation in change_sets_relation:
How to I create a Changetset object from the relation pointing to the changeset?
The text was updated successfully, but these errors were encountered:
@cmedcoff, changeset_obj = Changeset(client, changeset_relation) should work. Try it out and let me know if it works out for you.
changeset_obj = Changeset(client, changeset_relation)
Sorry, something went wrong.
SAnCherepan
No branches or pull requests
I have the following code (fragment):
How to I create a Changetset object from the relation pointing to the changeset?
The text was updated successfully, but these errors were encountered: