Skip to content

Commit

Permalink
bpo-28468: Fix typo in _os_release_candidates (GH-23913)
Browse files Browse the repository at this point in the history
Automerge-Triggered-By: GH:tiran
  • Loading branch information
vstinner authored Dec 23, 2020
1 parent 28b75c8 commit bfda4f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@ def platform(aliased=0, terse=0):
# unescape five special characters mentioned in the standard
_os_release_unescape = re.compile(r"\\([\\\$\"\'`])")
# /etc takes precedence over /usr/lib
_os_release_candidates = ("/etc/os-release", "/usr/lib/os-relesase")
_os_release_candidates = ("/etc/os-release", "/usr/lib/os-release")
_os_release_cache = None


Expand Down

0 comments on commit bfda4f5

Please sign in to comment.