diff options
-rw-r--r-- | lesana/command.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lesana/command.py b/lesana/command.py index 2df70c1..7f70597 100644 --- a/lesana/command.py +++ b/lesana/command.py @@ -230,7 +230,10 @@ class Search(guacamole.Command): print(template.render(entries=results)) else: for entry in results: - print(entry) + print("{suid}: {entry}".format( + suid=entry.uid[:8], + entry=entry, + )) class Init(guacamole.Command): |