From 148d2187af9e84ce48a116c604daf50fdce3e82e Mon Sep 17 00:00:00 2001 From: Chaz Larson Date: Mon, 2 May 2022 17:42:29 -0500 Subject: [PATCH] Correct script filename --- docs/home/guides/local.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/home/guides/local.md b/docs/home/guides/local.md index 97ba7757..5dc1e7b2 100644 --- a/docs/home/guides/local.md +++ b/docs/home/guides/local.md @@ -642,18 +642,18 @@ deactivate All you need do is point to the python executable inside the virtual env. In our example, that means that if your scheduled job normally would be: ``` cd /Users/mroche/Plex-Meta-Manager -python plex-meta-manager.py -r +python plex_meta_manager.py -r ``` You would instead use: ``` cd /Users/mroche/Plex-Meta-Manager -pmm-venv/bin/python plex-meta-manager.py -r +pmm-venv/bin/python plex_meta_manager.py -r ``` On Windows that path is: ``` cd C:\Users\mroche\Plex-Meta-Manager -pmm-venv\Scripts\python.exe plex-meta-manager.py -r +pmm-venv\Scripts\python.exe plex_meta_manager.py -r ``` ### I want to update to the latest version of the code