1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Add info in --help that the webserver feature doesn't include static files
Author: Alexis Murzeau <amubtdx@gmail.com>
Bug-Debian: https://bugs.debian.org/990340
Forwarded: not-needed
Last-Update: 2022-04-16
---
glances/main.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/glances/main.py
+++ b/glances/main.py
@@ -348,7 +348,7 @@
action='store_true',
default=False,
dest='webserver',
- help='run Glances in web server mode (bottle needed)',
+ help='run Glances in web server mode (python3-bottle needed, static files not included)',
)
parser.add_argument(
'--cached-time',
|