jmcomic 2.5.25__tar.gz → 2.5.27__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {jmcomic-2.5.25/src/jmcomic.egg-info → jmcomic-2.5.27}/PKG-INFO +1 -1
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/__init__.py +1 -1
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/jm_toolkit.py +6 -2
- {jmcomic-2.5.25 → jmcomic-2.5.27/src/jmcomic.egg-info}/PKG-INFO +1 -1
- {jmcomic-2.5.25 → jmcomic-2.5.27}/LICENSE +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/README.md +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/setup.cfg +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/setup.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/api.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/cl.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/jm_client_impl.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/jm_client_interface.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/jm_config.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/jm_downloader.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/jm_entity.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/jm_exception.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/jm_option.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic/jm_plugin.py +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic.egg-info/SOURCES.txt +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic.egg-info/dependency_links.txt +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic.egg-info/entry_points.txt +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic.egg-info/requires.txt +0 -0
- {jmcomic-2.5.25 → jmcomic-2.5.27}/src/jmcomic.egg-info/top_level.txt +0 -0
|
@@ -298,7 +298,11 @@ class JmcomicText:
|
|
|
298
298
|
add()
|
|
299
299
|
# 定位右括号
|
|
300
300
|
j = find_right_pair(c, i)
|
|
301
|
-
|
|
301
|
+
if j == -1:
|
|
302
|
+
# 括号未闭合
|
|
303
|
+
char_list.append(c)
|
|
304
|
+
i += 1
|
|
305
|
+
continue
|
|
302
306
|
# 整个括号的单词结束
|
|
303
307
|
add(title[i:j])
|
|
304
308
|
# 移动指针
|
|
@@ -393,7 +397,7 @@ class JmPageTool:
|
|
|
393
397
|
# 收藏页面的本子结果
|
|
394
398
|
pattern_html_favorite_content = compile(
|
|
395
399
|
r'<div id="favorites_album_[^>]*?>[\s\S]*?'
|
|
396
|
-
r'<a href="/album/(\d+)/">[\s\S]*?'
|
|
400
|
+
r'<a href="/album/(\d+)/[^"]*">[\s\S]*?'
|
|
397
401
|
r'<div class="video-title title-truncate">([^<]*?)'
|
|
398
402
|
r'</div>'
|
|
399
403
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|