Skip to content

Commit

Permalink
Merge pull request #681 from jberry-suse/adi-move
Browse files Browse the repository at this point in the history
adi: map wanted_requests to str() before passing to splitter.
  • Loading branch information
nilxam committed Feb 13, 2017
2 parents 6eefb42 + 997f929 commit 0f188da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osclib/adi_command.py
Expand Up @@ -52,7 +52,7 @@ def create_new_adi(self, wanted_requests, by_dp=False, split=False):
splitter = RequestSplitter(self.api, requests, in_ring=False)
splitter.filter_add('./action[@type="submit"]')
if len(wanted_requests):
splitter.filter_add_requests(wanted_requests)
splitter.filter_add_requests([str(p) for p in wanted_requests])
# wanted_requests forces all requests into a single group.
else:
if split:
Expand Down

0 comments on commit 0f188da

Please sign in to comment.