Skip to content

Commit

Permalink
[32] fix secrets (#2205)
Browse files Browse the repository at this point in the history
  • Loading branch information
meisnate12 authored and actions-user committed Aug 22, 2024
1 parent 9f862ea commit 057fa75
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Added tenacity requirement at 9.0.0
Update lxml requirement to 5.3.0
Update pillow requirement to 10.4.0
Update PlexAPI requirement to 4.15.15
Update PlexAPI requirement to 4.15.16
Update psutil requirement to 6.0.0
Update setuptools requirement to 72.1.0
Update setuptools requirement to 73.0.1

# Removed Features

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.2-build31
2.0.2-build32
2 changes: 1 addition & 1 deletion modules/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def check_next(next_data):
if str(next_data).startswith("<<") and str(next_data).endswith(">>"):
return None
return next_data
check_next(self.data)
self.data = check_next(self.data)

def check_for_attribute(data, attribute, parent=None, test_list=None, translations=None, default=None, do_print=True, default_is_none=False, req_default=False, var_type="str", throw=False, save=True, int_min=0, int_max=None):
endline = ""
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ lxml==5.3.0
num2words==0.5.13
pathvalidate==3.2.0
pillow==10.4.0
PlexAPI==4.15.15
PlexAPI==4.15.16
psutil==6.0.0
python-dotenv==1.0.1
python-dateutil==2.9.0.post0
requests==2.32.3
tenacity==9.0.0
ruamel.yaml==0.18.6
schedule==1.2.2
setuptools==72.2.0
setuptools==73.0.1
tmdbapis==1.2.16

0 comments on commit 057fa75

Please sign in to comment.