Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Benature committed Oct 12, 2019
1 parent dcd655f commit 5bf2d31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lecture_rename/lec_rename.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
if fn_split[-1] not in ["pptx", "pdf"]:
continue
# 防止重复改名
if len(re.findall(r"\d.p", fn_split[-2])) == 0:
if len(re.findall(r"\d.p", fn)) == 0:
continue

# 提取序号
Expand Down
4 changes: 2 additions & 2 deletions url_jump/readme.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# 快速打开网盘链接的方法之一
# 一个快速打开网盘链接的方法

## 说明

老师把课件放到百度网盘了, 又不想把网盘链接添加到浏览器书签.

那么每次下课件都要找网盘链接, 还不如把链接写进html里面以后双击就打开了.

>对于网盘有验证码的情况, 一般输入一次就够了, 下次打开链接的时候百度网盘服务器根据cookie应该能认出你, 就可以免登了.
>对于网盘有验证码的情况, 一般输入一次就够了, 下次打开链接的时候百度网盘服务器根据cookies应该能认出你, 就可以免登了.
## 配置

Expand Down

0 comments on commit 5bf2d31

Please sign in to comment.