Skip to content

Commit

Permalink
Merge pull request #1435 from ESMCI/erichlf/create_newcase/tabs2spaces
Browse files Browse the repository at this point in the history
Removed Tabs from create_newcase

There were tabs in create_newcase. None prevented the script from running, but
should be removed for consistency.

Test suite: scripts_regression_tests.py --fast
Test baseline:
Test namelist changes:
Test status: bit for bit

Fixes #1434

User interface changes?: No

Code review: @jgfouca
  • Loading branch information
jgfouca authored Apr 27, 2017
2 parents 8924bb3 + 6e5036a commit c726ded
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/create_newcase
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ OR
parser.add_argument("--case", "-case", required=True,
help="(required) Specify the case name. "
"If not a full pathname, then the case is created "
"under then current working directory ")
"under then current working directory ")

parser.add_argument("--compset", "-compset", required=True,
help="(required) Specify a compset. "
Expand Down Expand Up @@ -76,7 +76,7 @@ OR
parser.add_argument("--pesfile",
help="Only used and required for --user-compset argument."
"Full pathname of the pes specification file"
"This argument is required if --user-compset is True")
"This argument is required if --user-compset is True")

parser.add_argument("--user-grid", action="store_true",
help="If set, then the -grid argument is treated as a user specified grid."
Expand All @@ -88,7 +88,7 @@ OR
help="Full pathname of config grid file to use"
"This should be a copy of config/config_grids.xml"
"with the new user grid changes added to it"
"This argument is required if --user-grid is True")
"This argument is required if --user-grid is True")

parser.add_argument("--srcroot", default=os.path.dirname(cimeroot),
help="Alternative path for source root directory. By default this is set to"
Expand Down

0 comments on commit c726ded

Please sign in to comment.