Loading cccli/command/command.py +3 −3 Original line number Diff line number Diff line Loading @@ -234,7 +234,7 @@ class TqlCommand(OptionCommand): tv = tl.pop(tn, None) if tv is not None: pls.append("%s%s:%s%s"%(self.tdtc(tn), tn, self.tdc(tn), self.tdr(tn, tv))) # print next tags without order for (tn, tv) in tl.items(): pls.append("%s%s:%s%s"%(self.tdtc(tn), tn, self.tdc(tn), self.tdr(tn, tv))) # print tags without order, alpha ordered for tn in sorted(tl.keys()): pls.append("%s%s:%s%s"%(self.tdtc(tn), tn, self.tdc(tn), self.tdr(tn, tl[tn]))) self.printer.out("%s%s"%(" ".join(pls), color["reset"])) Loading
cccli/command/command.py +3 −3 Original line number Diff line number Diff line Loading @@ -234,7 +234,7 @@ class TqlCommand(OptionCommand): tv = tl.pop(tn, None) if tv is not None: pls.append("%s%s:%s%s"%(self.tdtc(tn), tn, self.tdc(tn), self.tdr(tn, tv))) # print next tags without order for (tn, tv) in tl.items(): pls.append("%s%s:%s%s"%(self.tdtc(tn), tn, self.tdc(tn), self.tdr(tn, tv))) # print tags without order, alpha ordered for tn in sorted(tl.keys()): pls.append("%s%s:%s%s"%(self.tdtc(tn), tn, self.tdc(tn), self.tdr(tn, tl[tn]))) self.printer.out("%s%s"%(" ".join(pls), color["reset"]))