diff --git a/cccli/command/command.py b/cccli/command/command.py index 5251ee12f06713a479c82a90fcf1b354f090995e..2fe2a5e32fbf32e5c62677085679a49ad860965f 100644 --- a/cccli/command/command.py +++ b/cccli/command/command.py @@ -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"]))