Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Condainer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpcdf
Condainer
Commits
75dc4f34
Commit
75dc4f34
authored
1 year ago
by
Klaus Reuter
Browse files
Options
Downloads
Patches
Plain Diff
add URL to help text
parent
6b892c15
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
condainer/main.py
+2
-1
2 additions, 1 deletion
condainer/main.py
with
2 additions
and
1 deletion
condainer/main.py
+
2
−
1
View file @
75dc4f34
...
...
@@ -10,9 +10,10 @@ def get_args():
"""
Handle command line arguments, return args.
"""
parser
=
argparse
.
ArgumentParser
(
formatter_class
=
argparse
.
RawDescriptionHelpFormatter
,
prog
=
sys
.
argv
[
0
],
description
=
'
Create and manage conda environments based on compressed squashfs images.
'
,
epilog
=
'"
Do not set Anacondas free,
better cage
them into
a
container!
"
.
'
epilog
=
'
More information at https://gitlab.mpcdf.mpg.de/khr/condainer
\n\n
"
Do not set Anacondas free,
put
them into container
s
!
"'
)
parser
.
add_argument
(
'
-q
'
,
'
--quiet
'
,
action
=
'
store_true
'
,
help
=
'
be quiet, do not write to stdout unless an error occurs
'
)
subparsers
=
parser
.
add_subparsers
(
dest
=
'
subcommand
'
,
required
=
True
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment