Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

help: reformat all the help text so that it is <80 chars #1754

Merged
merged 1 commit into from Jun 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 7 additions & 5 deletions src/streamlink/plugins/abweb.py
Expand Up @@ -34,7 +34,10 @@ class ABweb(Plugin):
required=True,
requires=["password"],
metavar="USERNAME",
help="The username associated with your ABweb account, required to access any ABweb stream.",
help="""
The username associated with your ABweb account, required to access any
ABweb stream.
""",
prompt="Enter ABweb username"
),
PluginArgument(
Expand All @@ -48,10 +51,9 @@ class ABweb(Plugin):
"purge-credentials",
action="store_true",
help="""
Purge cached ABweb credentials to initiate a new session
and reauthenticate.
"""
)
Purge cached ABweb credentials to initiate a new session and
reauthenticate.
""")
)

def __init__(self, url):
Expand Down
5 changes: 4 additions & 1 deletion src/streamlink/plugins/bbciplayer.py
Expand Up @@ -76,7 +76,10 @@ class BBCiPlayer(Plugin):
PluginArgument(
"hd",
action="store_true",
help="Prefer HD streams over local SD streams, some live programmes may not be broadcast in HD."
help="""
Prefer HD streams over local SD streams, some live programmes may
not be broadcast in HD.
"""
),
)

Expand Down
6 changes: 5 additions & 1 deletion src/streamlink/plugins/btsports.py
Expand Up @@ -18,7 +18,11 @@ class BTSports(Plugin):
requires=["password"],
metavar="EMAIL",
required=True,
help="The email associated with your BT Sport account, required to access any BT Sport stream."
help="""
The email associated with your BT Sport account, required to access any
BT Sport stream.
"""

),
PluginArgument(
"password",
Expand Down
3 changes: 2 additions & 1 deletion src/streamlink/plugins/funimationnow.py
Expand Up @@ -175,7 +175,8 @@ class FunimationNow(Plugin):
argument_name="funimation-mux-subtitles",
action="store_true",
help="""
Enable automatically including available subtitles in to the output stream.
Enable automatically including available subtitles in to the output
stream.
"""
)
)
Expand Down
18 changes: 8 additions & 10 deletions src/streamlink/plugins/zattoo.py
Expand Up @@ -58,25 +58,23 @@ class Zattoo(Plugin):
requires=["password"],
metavar="EMAIL",
help="""
The email associated with your zattoo account, required to access any zattoo stream.
"""
),
The email associated with your zattoo account, required to access
any zattoo stream.
"""),
PluginArgument(
"password",
sensitive=True,
metavar="PASSWORD",
help="""
A zattoo account password to use with --zattoo-email.
"""
),
A zattoo account password to use with --zattoo-email.
"""),
PluginArgument(
"purge-credentials",
action="store_true",
help="""
Purge cached zattoo credentials to initiate a new session
and reauthenticate.
"""
)
Purge cached zattoo credentials to initiate a new session
and reauthenticate.
""")
)

def __init__(self, url):
Expand Down