jmcomic 0.4.7__tar.gz → 0.4.9__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-0.4.7 → jmcomic-0.4.9}/PKG-INFO +1 -1
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic/api.py +3 -2
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic/jm_entity.py +1 -1
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic/jm_option.py +1 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic.egg-info/PKG-INFO +1 -1
- {jmcomic-0.4.7 → jmcomic-0.4.9}/setup.py +1 -1
- {jmcomic-0.4.7 → jmcomic-0.4.9}/README.md +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic/__init__.py +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic/jm_client.py +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic/jm_config.py +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic/jm_service.py +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic/jm_toolkit.py +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic.egg-info/SOURCES.txt +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic.egg-info/dependency_links.txt +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic.egg-info/requires.txt +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/jmcomic.egg-info/top_level.txt +0 -0
- {jmcomic-0.4.7 → jmcomic-0.4.9}/setup.cfg +0 -0
|
@@ -168,6 +168,7 @@ def create_option(filepath: str) -> JmOption:
|
|
|
168
168
|
"""
|
|
169
169
|
option = JmOption.create_from_file(filepath)
|
|
170
170
|
client_config = option.client_config
|
|
171
|
-
|
|
172
|
-
|
|
171
|
+
key = 'domain'
|
|
172
|
+
if client_config.get(key, None) is None or client_config[key] is None:
|
|
173
|
+
client_config[key] = renew_jm_default_domain()
|
|
173
174
|
return option
|
|
@@ -274,7 +274,7 @@ class JmSearchPage(IterableEntity):
|
|
|
274
274
|
# (album_id, title, category_none, label_sub_none, tag_list)
|
|
275
275
|
self.data: List[Tuple[str, str, StrNone, StrNone, List[str]]] = album_info_list
|
|
276
276
|
|
|
277
|
-
def album_id_iter(self)
|
|
277
|
+
def album_id_iter(self):
|
|
278
278
|
for album_info in self.data:
|
|
279
279
|
yield album_info[0]
|
|
280
280
|
|
|
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
|