Skip to content

Commit

Permalink
-minor docstring fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ajohns committed Mar 21, 2017
1 parent 4a9f181 commit 19a22b9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/rez/rezconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,17 +187,17 @@
# The map supports regular expression e.g. to keep versions.
# Please note that following examples are not necessarily recommendations.
#
# platform_map = {
# "os": {
# r"Scientific Linux-(.*)": r"Scientific-\1", # Scientific Linux-x.x -> Scientific-x.x
# r"Ubuntu-14.\d": r"Ubuntu-14", # Any Ubuntu-14.x -> Ubuntu-14
# r'CentOS Linux-(\d+)\.(\d+)(\.(\d+))?': r'CentOS-\1.\2', ' # Centos Linux-X.Y.Z -> CentOS-X.Y
# },
# "arch": {
# "x86_64": "64bit", # Maps both x86_64 and amd64 -> 64bit
# "amd64": "64bit",
# },
# }
# platform_map = {
# "os": {
# r"Scientific Linux-(.*)": r"Scientific-\1", # Scientific Linux-x.x -> Scientific-x.x
# r"Ubuntu-14.\d": r"Ubuntu-14", # Any Ubuntu-14.x -> Ubuntu-14
# r'CentOS Linux-(\d+)\.(\d+)(\.(\d+))?': r'CentOS-\1.\2', ' # Centos Linux-X.Y.Z -> CentOS-X.Y
# },
# "arch": {
# "x86_64": "64bit", # Maps both x86_64 and amd64 -> 64bit
# "amd64": "64bit",
# },
# }
platform_map = {}

# If true, then when a resolve graph is generated during a failed solve, packages
Expand Down

0 comments on commit 19a22b9

Please sign in to comment.