diff --git a/cccli/command/list.py b/cccli/command/list.py index ba35dae3eadd79e349392852d03b45a8933cecf4..fe387f7453a907fa6f2317b31ec2ef327a96bb45 100644 --- a/cccli/command/list.py +++ b/cccli/command/list.py @@ -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: diff --git a/cccli/command/right.py b/cccli/command/right.py index b849ff626dc7bf078c2cb346f0f7a6722f7abcd4..a6046b4934a930c094464a7f0d861674a3e30e25 100644 --- a/cccli/command/right.py +++ b/cccli/command/right.py @@ -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 diff --git a/cccli/command/tag.py b/cccli/command/tag.py index cda438c1dc7bbd9aa52ac0b2f48a9f6150d78d68..65ee219fecca1308b61fb0e7deb90813217bf570 100644 --- a/cccli/command/tag.py +++ b/cccli/command/tag.py @@ -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 @@ -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