From 93d9e9c5eae99d627f3c64c98eb973004a60c3aa Mon Sep 17 00:00:00 2001
From: Seblu <sebastien.luttringer@smartjog.com>
Date: Mon, 21 Feb 2011 12:49:00 +0100
Subject: [PATCH] print tag without order, alpha ordered by default

---
 cccli/command/command.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cccli/command/command.py b/cccli/command/command.py
index 5251ee1..2fe2a5e 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"]))
-- 
GitLab