Loading cccli/command/list.py +1 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ class Command_list(TqlCommand): self.parse_args(argv) if len(self.args) == 0: self.args.append("") objs = self.rpccall("list", str.join("", self.args), _status=False) objs = self.rpccall("list", str.join("", self.args)) if len(objs) == 0: return if self.options.align: Loading cccli/command/right.py +1 −0 Original line number Diff line number Diff line Loading @@ -18,6 +18,7 @@ class Command_rights(TqlCommand): self.set_usage("%prog [options] [tql]") self.add_option("--raw", action="store_true", dest="raw", help="Don't append filter on request") self.remove_option("-s") def __call__(self, argv): # Parse argline Loading cccli/command/tag.py +2 −1 Original line number Diff line number Diff line Loading @@ -20,6 +20,7 @@ class Command_tags(TqlCommand): self.set_usage("%prog [options] [tql]") self.add_option("--raw", action="store_true", dest="raw", help="Don't append filter on request") self.remove_option("-s") def __call__(self, argv): # Parse argline Loading @@ -34,7 +35,7 @@ class Command_tags(TqlCommand): tql += "&a" # ask server try: objs = self.rpccall("tags", tql, _status=False) objs = self.rpccall("tags", tql) except RpcError as e: raise cmdError("RPCError: %s"%str(e)) # display answer Loading Loading
cccli/command/list.py +1 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ class Command_list(TqlCommand): self.parse_args(argv) if len(self.args) == 0: self.args.append("") objs = self.rpccall("list", str.join("", self.args), _status=False) objs = self.rpccall("list", str.join("", self.args)) if len(objs) == 0: return if self.options.align: Loading
cccli/command/right.py +1 −0 Original line number Diff line number Diff line Loading @@ -18,6 +18,7 @@ class Command_rights(TqlCommand): self.set_usage("%prog [options] [tql]") self.add_option("--raw", action="store_true", dest="raw", help="Don't append filter on request") self.remove_option("-s") def __call__(self, argv): # Parse argline Loading
cccli/command/tag.py +2 −1 Original line number Diff line number Diff line Loading @@ -20,6 +20,7 @@ class Command_tags(TqlCommand): self.set_usage("%prog [options] [tql]") self.add_option("--raw", action="store_true", dest="raw", help="Don't append filter on request") self.remove_option("-s") def __call__(self, argv): # Parse argline Loading @@ -34,7 +35,7 @@ class Command_tags(TqlCommand): tql += "&a" # ask server try: objs = self.rpccall("tags", tql, _status=False) objs = self.rpccall("tags", tql) except RpcError as e: raise cmdError("RPCError: %s"%str(e)) # display answer Loading