diff options
-rw-r--r-- | uio.py | 22 | ||||
-rw-r--r-- | umodule.py | 3 |
2 files changed, 16 insertions, 9 deletions
@@ -305,14 +305,8 @@ class PrintSystem: self.print_table([ \ [bold + '-v', bullet + space + 'Verbose Mode'], \ [bold + '-nc', bullet + space + 'No Colors'], \ - [bold + '-help', bullet + space + 'See this screen'], \ - [bold + '-list', bullet + space + 'List Profiles'], \ [bold + '-version', bullet + space + 'Version Information']]) - self.print_line('') - self.print_line(highlight + space + 'Usage Examples:' + reset) - self.print_table([ \ - [bold + 'uprofile', bullet + space + 'Activates Folder Profile. Fallback to user profile.'], \ - [bold + 'uprofile <profile>', bullet + space + 'See Details on <profile>']]) + class ProfilePrintSystem(PrintSystem): @@ -375,6 +369,20 @@ class ProfilePrintSystem(PrintSystem): self.print_line(bold + lime + 'Usage:' + reset + ' uprofile <options> ' + profile_name \ + space + action_name + space + options) + + def print_options(self): + self.print_line(highlight + space + 'Options:' + reset) + self.print_table([ \ + [bold + '-v', bullet + space + 'Verbose Mode'], \ + [bold + '-nc', bullet + space + 'No Colors'], \ + [bold + '-help', bullet + space + 'See this screen'], \ + [bold + '-list', bullet + space + 'List Profiles'], \ + [bold + '-version', bullet + space + 'Version Information']]) + self.print_line('') + self.print_line(highlight + space + 'Usage Examples:' + reset) + self.print_table([ \ + [bold + 'uprofile', bullet + space + 'Activates Folder Profile. Fallback to user profile.'], \ + [bold + 'uprofile <profile>', bullet + space + 'See Details on <profile>']]) filesystem = FileSystem() printsystem = PrintSystem() @@ -186,8 +186,7 @@ class Sym(Action): family.append(parent) return family else: - for member in family: - family.pop() + del family[:] elif isinstance(link, list) and isinstance(link[0], int): if option == link[0]: |