diff --git a/plugins/ChangeFileMonitor/changefilemonitor.py b/plugins/ChangeFileMonitor/changefilemonitor.py index c42fca8..41918a5 100644 --- a/plugins/ChangeFileMonitor/changefilemonitor.py +++ b/plugins/ChangeFileMonitor/changefilemonitor.py @@ -12,7 +12,6 @@ import logging from logging.handlers import RotatingFileHandler import stashapi.log as log # Importing stashapi.log as log for critical events ONLY from stashapi.stashapp import StashInterface -from changefilemonitor_settings import config # Import settings from changefilemonitor_settings.py from watchdog.observers import Observer # This is also needed for event attributes import watchdog # pip install watchdog # https://pythonhosted.org/watchdog/ from threading import Lock, Condition diff --git a/plugins/ChangeFileMonitor/changefilemonitor_settings.py b/plugins/ChangeFileMonitor/changefilemonitor_settings.py deleted file mode 100644 index 6596f74..0000000 --- a/plugins/ChangeFileMonitor/changefilemonitor_settings.py +++ /dev/null @@ -1,10 +0,0 @@ -# Description: This is a Stash plugin which updates Stash if any changes occurs in the Stash library paths. -# By David Maisonave (aka Axter) Jul-2024 (https://www.axter.com/) -# Get the latest developers version from following link: https://github.com/David-Maisonave/Axter-Stash/tree/main/plugins/ChangeFileMonitor -# ChangeFileMonitor plugin main configuration options are available on the Stash GUI under Settings->Plugins->Plugins->[ChangeFileMonitor]. -# Most users should only use the GUI options. -# The configuration options in this file are for advanced users ONLY!!! -config = { - # Place holder for future options - "foofoo": True, -} diff --git a/plugins/ChangeFileMonitor/manifest b/plugins/ChangeFileMonitor/manifest index 3cf4761..4a03c5f 100644 --- a/plugins/ChangeFileMonitor/manifest +++ b/plugins/ChangeFileMonitor/manifest @@ -10,5 +10,4 @@ files: - README.md - changefilemonitor.yml - changefilemonitor.py -- changefilemonitor_settings.py - requirements.txt