Skip to content

Commit

Permalink
优化界面文字提示
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel2022 committed Aug 3, 2020
1 parent ec3b695 commit f7bb9ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ def display(self):
elif self.statetag == ADD_ITEM:
print("删除末尾【D】 清空【CL】 返回【X】 退出【Q】")
print("输入1个或多个av号或BV号(空格分隔)")
print("添加剧集请输入ep_id或media_id或season_id")
elif self.statetag == SELECT_QUALITY:
if self.auto or self.allauto:
print("可用画质(下载会自动择优)")
Expand Down
2 changes: 1 addition & 1 deletion module/bililib.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def __init__(self, media_id=None, ep_id=None, season_id=None):
else:
raise MannualError(3)
def show(self):
string = "%s\nss号:%s\nUP主:%s\nP数:%d\n\n" \
string = "【剧集】%s\nss号:%s\nUP主:%s\n集数:%d\n\n" \
% (self.title,self.ssid,self.owner.name,self.pages)
for i in range(self.pages):
string += "P%d.%s\n" % (i+1,self.video_list[i].subtitle)
Expand Down

0 comments on commit f7bb9ee

Please sign in to comment.