Change tag display

main
Florian Richoux 4 years ago committed by Fabien C. Y. Benureau
parent bf79085e38
commit de189e325b
No known key found for this signature in database
GPG Key ID: CE56629494581522

@ -87,7 +87,7 @@ def command(conf, args):
rp = Repository(conf)
if citekeyOrTag is None:
ui.message(color.dye_out(' '.join(sorted(rp.get_tags())), 'tag'))
ui.message(color.dye_out(', '.join(sorted(rp.get_tags())), 'tag'))
else:
not_citekey = False
try:
@ -97,7 +97,7 @@ def command(conf, args):
if not not_citekey:
p = rp.pull_paper(citekeyOrTag)
if tags is None:
ui.message(color.dye_out(' '.join(sorted(p.tags)), 'tag'))
ui.message(color.dye_out(', '.join(sorted(p.tags)), 'tag'))
else:
add_tags, remove_tags = _tag_groups(_parse_tag_seq(tags))
for tag in add_tags:

Loading…
Cancel
Save