]> glassweightruler.freedombox.rocks Git - waydroid.git/commitdiff
fix typo in arguments.py
authorMaxiee <maxieewong@gmail.com>
Tue, 26 Jul 2022 15:38:24 +0000 (23:38 +0800)
committerAlessandro Astone <ales.astone@gmail.com>
Fri, 5 Aug 2022 16:45:12 +0000 (18:45 +0200)
There is a typo in help text of stop session command. "start session" should be "stop session".

tools/helpers/arguments.py

index fbca8405425bc7bd4d48d802a5056e4dfc7ceaf8..85b9045f0eda3d08f4b0832850345db50a82973e 100644 (file)
@@ -58,7 +58,7 @@ def arguments_session(subparser):
     ret = subparser.add_parser("session", help="session controller")
     sub = ret.add_subparsers(title="subaction", dest="subaction")
     sub.add_parser("start", help="start session")
-    sub.add_parser("stop", help="start session")
+    sub.add_parser("stop", help="stop session")
     return ret
 
 def arguments_container(subparser):