Skip to content
Snippets Groups Projects
Commit 8c609f25 authored by Seblu's avatar Seblu
Browse files

Don't print status if it's None

parent fe742047
No related branches found
No related tags found
No related merge requests found
...@@ -215,5 +215,6 @@ class TqlCommand(OptionCommand): ...@@ -215,5 +215,6 @@ class TqlCommand(OptionCommand):
def print_status(self, outputlist): def print_status(self, outputlist):
'''Display status from an object list ''' '''Display status from an object list '''
for o in outputlist: if outputlist is not None:
self.print_tags(o[1][1]) for o in outputlist:
self.print_tags(o[1][1])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment