Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
add_module
Commits
c5454bed
Commit
c5454bed
authored
Oct 27, 2020
by
Paul McCarthy
🚵
Browse files
BF: downcase
parent
3506ea5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
fsl/scripts/fsl_add_module.py
View file @
c5454bed
...
...
@@ -103,7 +103,7 @@ from typing import List, Tuple
import
fsl.add_module.ui
as
ui
import
fsl.add_module.routines
as
routines
import
fsl.add_module.plugin_manifest
as
plgman
from
fsl.add_module
import
__
VERSION
__
from
fsl.add_module
import
__
version
__
from
fsl.add_module.messages
import
(
info
,
important
,
warning
,
...
...
@@ -156,7 +156,7 @@ def parseArgs(argv : List[str]) -> argparse.Namespace:
description
=
'Download and install FSL modules'
)
parser
.
add_argument
(
'-V'
,
'--version'
,
action
=
'version'
,
help
=
helps
[
'version'
],
version
=
'%(prog)s {}'
.
format
(
__
VERSION
__
))
version
=
'%(prog)s {}'
.
format
(
__
version
__
))
parser
.
add_argument
(
'-v'
,
'--verbose'
,
action
=
'store_true'
,
help
=
helps
[
'verbose'
])
parser
.
add_argument
(
...
...
@@ -360,7 +360,7 @@ def main(argv=None):
args
=
parseArgs
(
argv
)
important
(
f
'fsl_add_module
{
__
VERSION
__
}
. Press CTRL+C '
important
(
f
'fsl_add_module
{
__
version
__
}
. Press CTRL+C '
'at any point to exit.'
,
UNDERLINE
,
EMPHASIS
)
try
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment