Commit 5549e95c authored by Seblu's avatar Seblu
Browse files

fix tags bad using of OptionCommand

parent 84ed6035
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -34,10 +34,10 @@ class Command_tags(OptionCommand):
            self.td = lambda tagname, tagvalue: unicode(tagvalue)
            self.tc = lambda tagname: color["reset"]
        # append current login if nothing asked
        if len(args) == 0:
        if len(self.args) == 0:
            tql = "a=%s"%self.cli.settings["login"]
        else:
            tql = "".join(args)
            tql = "".join(self.args)
        # update tql if mode
        if not self.options.raw:
            tql += "&a"