mkv-episode-matcher 0.9.4__py3-none-any.whl → 0.9.5__py3-none-any.whl

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.

Potentially problematic release.


This version of mkv-episode-matcher might be problematic. Click here for more details.

@@ -43,7 +43,7 @@ def set_config(
43
43
  Returns:
44
44
  None
45
45
  """
46
- config = configparser.ConfigParser()
46
+ config = configparser.ConfigParser(interpolation=None)
47
47
  config["Config"] = {
48
48
  "tmdb_api_key": str(tmdb_api_key),
49
49
  "show_dir": show_dir,
@@ -56,7 +56,7 @@ def set_config(
56
56
  logger.info(
57
57
  f"Setting config with API:{tmdb_api_key}, show_dir: {show_dir}, and max_threads: {MAX_THREADS}"
58
58
  )
59
- with open(file, "w") as configfile:
59
+ with open(file, "w", encoding="utf-8") as configfile:
60
60
  config.write(configfile)
61
61
 
62
62
 
@@ -72,8 +72,8 @@ def get_config(file):
72
72
 
73
73
  """
74
74
  logger.info(f"Loading config from {file}")
75
- config = configparser.ConfigParser()
75
+ config = configparser.ConfigParser(interpolation=None)
76
76
  if Path(file).exists():
77
- config.read(file)
77
+ config.read(file, encoding="utf-8")
78
78
  return config["Config"] if "Config" in config else None
79
79
  return {}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mkv-episode-matcher
3
- Version: 0.9.4
3
+ Version: 0.9.5
4
4
  Summary: The MKV Episode Matcher is a tool for identifying TV series episodes from MKV files and renaming the files accordingly.
5
5
  Home-page: https://github.com/Jsakkos/mkv-episode-matcher
6
6
  Author: Jonathan Sakkos
@@ -1,15 +1,15 @@
1
1
  mkv_episode_matcher/.gitattributes,sha256=Gh2-F2vCM7SZ01pX23UT8pQcmauXWfF3gwyRSb6ZAFs,66
2
2
  mkv_episode_matcher/__init__.py,sha256=u3yZcpuK0ICeUjxYKePvW-zS61E5ss5q2AvqnSHuz9E,240
3
3
  mkv_episode_matcher/__main__.py,sha256=iYuO2xWt1Xf_MXxJd_XKCrEgpicawE8LlZWtIq9dk90,12380
4
- mkv_episode_matcher/config.py,sha256=KuKxvKuOrmpCZ80mjykT6oZeD3uArsq6XPioMBrAxuU,2279
4
+ mkv_episode_matcher/config.py,sha256=2UUdhVZ3uMXPenPlwvpgRujointbQItrcj46GW_nnfY,2351
5
5
  mkv_episode_matcher/episode_identification.py,sha256=YwkH3cmd79I6zFh4nIuv19Kh4N9vXcP8HnZlmUQTA7c,16953
6
6
  mkv_episode_matcher/episode_matcher.py,sha256=r6A9K4g4a8yU5aJ42n2yWuVgu5azBRE9FY3kDcdfe3w,6545
7
7
  mkv_episode_matcher/subtitle_utils.py,sha256=z4eYTMAoI8BVzdCNeqHu-9mkhwG8RzxE5BbNjWUJwCg,2552
8
8
  mkv_episode_matcher/tmdb_client.py,sha256=LbMCgjmp7sCbrQo_CDlpcnryKPz5S7inE24YY9Pyjk4,4172
9
9
  mkv_episode_matcher/utils.py,sha256=Q9XFA-EIbMAsUKRtK5z23G1zgJKtxTcD-TkaHQKYIK8,17956
10
- mkv_episode_matcher-0.9.4.dist-info/licenses/LICENSE,sha256=ScBvQ_sUEpaRMDYp01qmMDELT1nTknFP2w-VRAS54TY,1071
11
- mkv_episode_matcher-0.9.4.dist-info/METADATA,sha256=Ac-w5Vu3Y0tw1hcQqr3CaNqmmYXekn6XCqxBZxbCbVE,7664
12
- mkv_episode_matcher-0.9.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
- mkv_episode_matcher-0.9.4.dist-info/entry_points.txt,sha256=IglJ43SuCZq2eQ3shMFILCkmQASJHnDCI3ogohW2Hn4,64
14
- mkv_episode_matcher-0.9.4.dist-info/top_level.txt,sha256=XRLbd93HUaedeWLtkyTvQjFcE5QcBRYa3V-CfHrq-OI,20
15
- mkv_episode_matcher-0.9.4.dist-info/RECORD,,
10
+ mkv_episode_matcher-0.9.5.dist-info/licenses/LICENSE,sha256=ScBvQ_sUEpaRMDYp01qmMDELT1nTknFP2w-VRAS54TY,1071
11
+ mkv_episode_matcher-0.9.5.dist-info/METADATA,sha256=dzkpkYFv5Xe9OPKXp1vLigmRRtQMUcqh0mW05RxpY90,7664
12
+ mkv_episode_matcher-0.9.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ mkv_episode_matcher-0.9.5.dist-info/entry_points.txt,sha256=IglJ43SuCZq2eQ3shMFILCkmQASJHnDCI3ogohW2Hn4,64
14
+ mkv_episode_matcher-0.9.5.dist-info/top_level.txt,sha256=XRLbd93HUaedeWLtkyTvQjFcE5QcBRYa3V-CfHrq-OI,20
15
+ mkv_episode_matcher-0.9.5.dist-info/RECORD,,