diff --git a/slpkg/views/help_commands.py b/slpkg/views/help_commands.py index 9c177928..d4ead76c 100644 --- a/slpkg/views/help_commands.py +++ b/slpkg/views/help_commands.py @@ -27,7 +27,6 @@ class Help(Configs): 'upgrade': "Upgrade all the installed packages if the newer version exists in the repository.", 'check-updates': "Check if there is any news on the SlackBuild's ChangeLog.txt file.", 'configs': "Edit the configuration '/etc/slpkg/slpkg.toml' file.", - 'new-configs': "Managing the '.new' configuration files is easy and fast. Move, copy or remove them.", 'clean-logs': "Cleans dependencies log tracking. After that procedure you should remove dependencies " "by hand.", 'clean-tmp': "Deletes all the downloaded SlackBuilds scripts and sources.", @@ -51,7 +50,6 @@ class Help(Configs): help_commands['-U'] = help_commands['upgrade'] help_commands['-c'] = help_commands['check-updates'] help_commands['-g'] = help_commands['configs'] - help_commands['-N'] = help_commands['new-configs'] help_commands['-L'] = help_commands['clean-logs'] help_commands['-D'] = help_commands['clean-tmp'] help_commands['-T'] = help_commands['clean-data']