Skip to content

Commit

Permalink
packaging: make sure _get_repo returns str
Browse files Browse the repository at this point in the history
Signed-off-by: Kyr Shatskyy <[email protected]>
  • Loading branch information
kshtsk authored and Kyr Shatskyy committed Mar 15, 2020
1 parent 70ee84a commit fb29154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teuthology/packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ def repo_url(self):
def _get_repo(self):
resp = requests.get(self.repo_url)
resp.raise_for_status()
return resp.text
return str(resp.text)

def _install_rpm_repo(self):
dist_release = self.dist_release
Expand Down

0 comments on commit fb29154

Please sign in to comment.