mirror of https://github.com/tqdm/tqdm.git
parent
e773193f69
commit
36ad510ef2
|
@ -1,7 +1,7 @@
|
|||
from __future__ import print_function
|
||||
from os import path
|
||||
import sys
|
||||
sys.path = [path.dirname(path.dirname(__file__))] + sys.path # NOQA
|
||||
sys.path.insert(0, path.dirname(path.dirname(__file__))) # NOQA
|
||||
import tqdm
|
||||
import tqdm.cli
|
||||
from textwrap import dedent
|
||||
|
|
|
@ -461,6 +461,8 @@ Extra CLI Options
|
|||
``unit_scale`` to True, ``unit_divisor`` to 1024, and ``unit`` to 'B'.
|
||||
* manpath : str, optional
|
||||
Directory in which to install tqdm man pages.
|
||||
* comppath : str, optional
|
||||
Directory in which to place tqdm completion.
|
||||
* log : str, optional
|
||||
CRITICAL|FATAL|ERROR|WARN(ING)|[default: 'INFO']|DEBUG|NOTSET.
|
||||
|
||||
|
|
|
@ -257,6 +257,12 @@ Directory in which to install tqdm man pages.
|
|||
.RS
|
||||
.RE
|
||||
.TP
|
||||
.B \-\-comppath=\f[I]comppath\f[]
|
||||
str, optional.
|
||||
Directory in which to place tqdm completion.
|
||||
.RS
|
||||
.RE
|
||||
.TP
|
||||
.B \-\-log=\f[I]log\f[]
|
||||
str, optional.
|
||||
CRITICAL|FATAL|ERROR|WARN(ING)|[default: \[aq]INFO\[aq]]|DEBUG|NOTSET.
|
||||
|
|
Loading…
Reference in New Issue