From 934d15cb5106a6b9a391a964812dc52a46f3f6a5 Mon Sep 17 00:00:00 2001 From: toitoinebzh <44553182+toitoinebzh@users.noreply.github.com> Date: Thu, 14 Mar 2019 00:32:57 +0100 Subject: [PATCH] Correct some typo --- manpages_auto.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/manpages_auto.py b/manpages_auto.py index 077aba963..d6aedb7e2 100644 --- a/manpages_auto.py +++ b/manpages_auto.py @@ -1,5 +1,3 @@ - GNU nano 2.7.4 FichierĀ : manpages_auto.py - """ Inspired by yunohost_completion.py (author: Christophe Vuillot) ======= @@ -38,6 +36,6 @@ with open(ACTIONSMAP_FILE, 'r') as stream: ACTIONS_DICT[domain] = ACTIONS_STR for action in ACTIONS: #print("yunohost", domain, action) - cmd = "sudo help2man \" yunohost " + domain + " " + action + " --help \" -o " +$ + cmd = "sudo help2man \" yunohost " + domain + " " + action + " --help \" -o " + OUTPUT_DIR + "yunohost_" + domain+ "_" + action print(cmd) os.system(cmd)