Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sjrpc
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
sjrpc
Commits
93d9e9c5
Commit
93d9e9c5
authored
14 years ago
by
Seblu
Browse files
Options
Downloads
Patches
Plain Diff
print tag without order, alpha ordered by default
parent
71e92cfb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cccli/command/command.py
+3
-3
3 additions, 3 deletions
cccli/command/command.py
with
3 additions
and
3 deletions
cccli/command/command.py
+
3
−
3
View file @
93d9e9c5
...
...
@@ -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
.
item
s
():
pls
.
append
(
"
%s%s:%s%s
"
%
(
self
.
tdtc
(
tn
),
tn
,
self
.
tdc
(
tn
),
self
.
tdr
(
tn
,
t
v
)))
# print tags without order
, alpha ordered
for
tn
in
sorted
(
tl
.
key
s
()
)
:
pls
.
append
(
"
%s%s:%s%s
"
%
(
self
.
tdtc
(
tn
),
tn
,
self
.
tdc
(
tn
),
self
.
tdr
(
tn
,
t
l
[
tn
]
)))
self
.
printer
.
out
(
"
%s%s
"
%
(
"
"
.
join
(
pls
),
color
[
"
reset
"
]))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment