fix returning value tag from tags search

This commit is contained in:
localhost_frssoft 2022-11-30 03:40:18 +03:00
parent fa58dde080
commit 105dccdda7
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def list_tags(pg=None, search=None):
list_tags(pg=tags_prev)
elif select == 'Search':
print('Search by tag:')
list_tags(search=input())
return list_tags(search=input())
else:
return tags_results[int(select)].get('name')