From 23b84328675fbf1bf9b652d6584f8aa3e6c86858 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Thu, 16 Mar 2023 13:38:57 +0200 Subject: [PATCH] Updated for comments --- slpkg/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slpkg/main.py b/slpkg/main.py index 8e38753c..fa082947 100644 --- a/slpkg/main.py +++ b/slpkg/main.py @@ -286,7 +286,7 @@ class Argparse(Configs): elif arg[0] == '--' and arg not in self.options: invalid.append(arg) - # Avoid to combine two or more options. + # Avoid to add same options. if len(options) != len(set(options)): print(f"{self.prog_name}: you added the same \'{', '.join(options)}\' options.") error: int = 1