Skip to content

Commit

Permalink
Merge branch 'master' of github.com:JessicaTegner/pypandoc
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaTegner committed Jul 12, 2024
2 parents 9543de0 + 06d0134 commit 23f6f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypandoc/pandoc_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _get_pandoc_urls(version="latest"):
# regex for the binaries
uname = platform.uname()[4]
processor_architecture = "arm" if uname.startswith("arm") or uname.startswith("aarch") else "amd"
regex = re.compile(r"/jgm/pandoc/releases/download/.*(?:"+processor_architecture+r"|x86|mac).*\.(?:msi|deb|pkg)")
regex = re.compile(r"/jgm/pandoc/releases/download/.*(?:"+processor_architecture+"|x86|mac).*\\.(?:msi|deb|pkg)")
# a list of urls to the binaries
pandoc_urls_list = regex.findall(content.decode("utf-8"))
# actual pandoc version
Expand Down

0 comments on commit 23f6f09

Please sign in to comment.