This commit is contained in:
Arun Prakash Jana 2020-03-15 19:39:25 +05:30
parent ca020f34ae
commit e488987458
No known key found for this signature in database
GPG Key ID: A75979F35C080412

12
buku
View File

@ -2318,7 +2318,11 @@ class BukuDb:
self.close_quit(1)
if self.chatty:
newtag = gen_auto_tag()
resp = input('Generate auto-tag (YYYYMonDD)? (y/n): ')
if resp == 'y':
newtag = gen_auto_tag()
else:
newtag = None
resp = input('Add parent folder names as tags? (y/n): ')
else:
newtag = None
@ -2395,7 +2399,11 @@ class BukuDb:
return self.mergedb(filepath)
if not tacit:
newtag = gen_auto_tag()
resp = input('Generate auto-tag (YYYYMonDD)? (y/n): ')
if resp == 'y':
newtag = gen_auto_tag()
else:
newtag = None
else:
newtag = None