Skip to content

Commit

Permalink
Fixing PR
Browse files Browse the repository at this point in the history
  • Loading branch information
jit-ci[bot] authored Oct 24, 2023
1 parent 58c9545 commit ac1ba6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python3.8/site-packages/setuptools/package_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ def _download_hg(self, url, filename):
url, rev = self._vcs_split_rev_from_url(url, pop_prefix=True)

self.info("Doing hg clone from %s to %s", url, filename)
os.system("hg clone --quiet %s %s" % (url, filename))
subprocess.run("hg clone --quiet %s %s" % (url, filename, shell=False, check=True, text=True))

if rev is not None:
self.info("Updating to %s", rev)
Expand Down

0 comments on commit ac1ba6a

Please sign in to comment.