Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make pylint super happy
Browse files Browse the repository at this point in the history
peno64 committed Dec 2, 2023
1 parent 4a1d770 commit 681061c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/lib/modules/iptvsimple.py
Original file line number Diff line number Diff line change
@@ -74,9 +74,9 @@ def setup(cls):
path = xbmcvfs.translatePath(addon.getAddonInfo('profile'))
settingsxml = path + 'settings.xml'
if os.path.isfile(settingsxml):
for f in glob.glob(path + "*.xml"):
if os.path.basename(f) != 'settings.xml':
shutil.copyfile(settingsxml, f)
for file in glob.glob(path + "*.xml"):
if os.path.basename(file) != 'settings.xml':
shutil.copyfile(settingsxml, file)

return True

0 comments on commit 681061c

Please sign in to comment.