Skip to content

Commit

Permalink
multiple ages separated by pipe character in names check report
Browse files Browse the repository at this point in the history
  • Loading branch information
ethoms-usgs committed Jan 10, 2024
1 parent af76435 commit 74e2da6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Scripts/GeMS_GeolexCheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import GeMS_utilityFunctions as guf


versionString = "GeMS_GeolexCheck.py, 1/4/24"
versionString = "GeMS_GeolexCheck.py, 1/10/24"
rawurl = "https://raw.githubusercontent.com/DO/I-USGS/gems-tools-pro/master/Scripts/GeMS_GeolexCheck.py"
guf.checkVersion(versionString, rawurl, "gems-tools-pro")

Expand Down Expand Up @@ -118,7 +118,7 @@ def parse_age(age_list):
for age in age_list:
ages.append(age.replace("\r\n", "\n"))

return ", ".join(ages)
return " | ".join(ages)


# API
Expand Down

0 comments on commit 74e2da6

Please sign in to comment.