Skip to content

Commit 0b7042b

Browse files
committed
update menu wording for #1107
1 parent 203c051 commit 0b7042b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

PixivUtil2.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ def menu():
182182
print(' b. Batch Download from batch_job.json (experimental)')
183183
print(Style.BRIGHT + '── Others '.ljust(PADDING, "─") + Style.RESET_ALL)
184184
print(' d. Manage database')
185-
print(' e. Export online bookmark')
186-
print(' m. Export online user bookmark')
185+
print(' e. Export online followed artist.')
186+
print(' m. Export online other\'s followed artist.')
187187
print(' i. Import list file')
188188
print(' r. Reload config.ini')
189189
print(' p. Print config.ini')
@@ -730,7 +730,7 @@ def menu_download_by_group_id(opisvalid, args, options):
730730

731731

732732
def menu_export_online_bookmark(opisvalid, args, options):
733-
__log__.info('Export Bookmark mode (e).')
733+
__log__.info('Export Followed Artists mode (e).')
734734
hide = "y" # y|n|o
735735
filename = "export.txt"
736736

@@ -754,7 +754,7 @@ def menu_export_online_bookmark(opisvalid, args, options):
754754

755755

756756
def menu_export_online_user_bookmark(opisvalid, args, options):
757-
__log__.info('Export Bookmark mode (m).')
757+
__log__.info('Export Other\'s Followed Artist mode (m).')
758758
member_id = ''
759759
filename = "export-user.txt"
760760

@@ -772,7 +772,8 @@ def menu_export_online_user_bookmark(opisvalid, args, options):
772772
if arg.isdigit():
773773
member_id = arg
774774
else:
775-
print("Invalid args: ", arg)
775+
print("Invalid args, member id is expected: ", arg)
776+
return
776777

777778
PixivBookmarkHandler.export_bookmark(sys.modules[__name__], __config__, filename, 'n', 1, 0, member_id)
778779

0 commit comments

Comments
 (0)