Skip to content

Commit d1d95ab

Browse files
authored
Merge pull request #17 from openmc-data-storage/more-general-message
general download
2 parents 94ee938 + 59f43d3 commit d1d95ab

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

src/openmc_data/convert/convert_fendl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ class CustomFormatter(
3232
help="Directory to create new library in",
3333
)
3434
parser.add_argument(
35-
"--download", action="store_true", help="Download files from IAEA-NDS"
35+
"--download", action="store_true", help="Download files"
3636
)
3737
parser.add_argument(
3838
"--no-download",
3939
dest="download",
4040
action="store_false",
41-
help="Do not download files from IAEA-NDS",
41+
help="Do not download files",
4242
)
4343
parser.add_argument("--extract", action="store_true", help="Extract tar/zip files")
4444
parser.add_argument(

src/openmc_data/convert/convert_jeff32.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ class CustomFormatter(
3232
help="Directory to create new library in",
3333
)
3434
parser.add_argument(
35-
"--download", action="store_true", help="Download files from OECD-NEA"
35+
"--download", action="store_true", help="Download files files"
3636
)
3737
parser.add_argument(
3838
"--no-download",
3939
dest="download",
4040
action="store_false",
41-
help="Do not download files from OECD-NEA",
41+
help="Do not download files files",
4242
)
4343
parser.add_argument("--extract", action="store_true", help="Extract tar/zip files")
4444
parser.add_argument(

src/openmc_data/convert/convert_jeff33.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ class CustomFormatter(
3535
help="Directory to create new library in",
3636
)
3737
parser.add_argument(
38-
"--download", action="store_true", help="Download tarball from OECD-NEA"
38+
"--download", action="store_true", help="Download files"
3939
)
4040
parser.add_argument(
4141
"--no-download",
4242
dest="download",
4343
action="store_false",
44-
help="Do not download tarball from OECD-NEA",
44+
help="Do not download files",
4545
)
4646
parser.add_argument("--extract", action="store_true", help="Extract zip files")
4747
parser.add_argument(

src/openmc_data/convert/convert_tendl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ class CustomFormatter(
3232
default=None,
3333
help="Directory to create new library in",
3434
)
35-
parser.add_argument("--download", action="store_true", help="Download files from PSI")
35+
parser.add_argument("--download", action="store_true", help="Download files")
3636
parser.add_argument(
3737
"--no-download",
3838
dest="download",
3939
action="store_false",
40-
help="Do not download files from PSI",
40+
help="Do not download files",
4141
)
4242
parser.add_argument("--extract", action="store_true", help="Extract tar/zip files")
4343
parser.add_argument(

src/openmc_data/generate/generate_cendl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
2626
parser.add_argument('-d', '--destination', type=Path, default=None,
2727
help='Directory to create new library in')
2828
parser.add_argument('--download', action='store_true',
29-
help='Download files from OECD-NEA')
29+
help='Download files')
3030
parser.add_argument('--no-download', dest='download', action='store_false',
31-
help='Do not download files from OECD-NEA')
31+
help='Do not download files')
3232
parser.add_argument('--extract', action='store_true',
3333
help='Extract tar/zip files')
3434
parser.add_argument('--no-extract', dest='extract', action='store_false',

src/openmc_data/generate/generate_endf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
3535
parser.add_argument('-d', '--destination', type=Path,
3636
help='Directory to create new library in')
3737
parser.add_argument('--download', action='store_true',
38-
help='Download zip files from NNDC')
38+
help='Download files')
3939
parser.add_argument('--no-download', dest='download', action='store_false',
40-
help='Do not download zip files from NNDC')
40+
help='Do not download files')
4141
parser.add_argument('--extract', action='store_true',
4242
help='Extract zip files')
4343
parser.add_argument('--no-extract', dest='extract', action='store_false',

src/openmc_data/generate/generate_fendl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
2727
parser.add_argument('-d', '--destination', type=Path, default=None,
2828
help='Directory to create new library in')
2929
parser.add_argument('--download', action='store_true',
30-
help='Download files from JAEA')
30+
help='Download files')
3131
parser.add_argument('--no-download', dest='download', action='store_false',
32-
help='Do not download files from JAEA')
32+
help='Do not download files')
3333
parser.add_argument('--extract', action='store_true',
3434
help='Extract tar/zip files')
3535
parser.add_argument('--no-extract', dest='extract', action='store_false',

src/openmc_data/generate/generate_jeff33.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
4242
"'earliest' for backwards compatibility or 'latest' for "
4343
"performance")
4444
parser.add_argument('--download', action='store_true',
45-
help='Download zip files from NNDC')
45+
help='Download files')
4646
parser.add_argument('--no-download', dest='download', action='store_false',
47-
help='Do not download zip files from NNDC')
47+
help='Do not download files')
4848
parser.add_argument('--use-tmpdir', dest='tmpdir', action='store_true',
4949
help='Use temporary directory while processing')
5050
parser.add_argument('--no-use-tmpdir', dest='tmpdir', action='store_false',

src/openmc_data/generate/generate_jendl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
2727
parser.add_argument('-d', '--destination', type=Path, default=None,
2828
help='Directory to create new library in')
2929
parser.add_argument('--download', action='store_true',
30-
help='Download files from JAEA')
30+
help='Download files')
3131
parser.add_argument('--no-download', dest='download', action='store_false',
32-
help='Do not download files from JAEA')
32+
help='Do not download files')
3333
parser.add_argument('--extract', action='store_true',
3434
help='Extract tar/zip files')
3535
parser.add_argument('--no-extract', dest='extract', action='store_false',

0 commit comments

Comments
 (0)