Skip to content

Commit

Permalink
Fix Mistake
Browse files Browse the repository at this point in the history
Forgot to add ProPresenter to default Support Files path.
  • Loading branch information
arlinsandbulte committed Jul 6, 2023
1 parent b9b4a78 commit c6d31a4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Pro7 Media Sweeper.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,8 @@ def undo_sweep():
"v2.1.2",
"v2.2.0",
"v2.3.0",
"v2.3.1")):
"v2.3.1",
"v2.3.2")):
moved_files_found_count = 0
files_moved_back_count = 0
matching_to_not_found_count = 0
Expand Down Expand Up @@ -436,7 +437,7 @@ def undo_sweep():

# Main program execution begins here ***********************************************************************************

script_version = "v2.3.1"
script_version = "v2.3.2"

# Get the user's home_dir directory
home_dir = Path.expanduser(Path.home())
Expand Down Expand Up @@ -467,7 +468,7 @@ def undo_sweep():
if not os.path.exists(pro7_app_data_location):
tk.messagebox.showerror(title="Warning!", message="ProPresenter 7 Installation not found! Program will end")
sys.exit()
pro7_support_file_path = Path(userpaths.get_my_documents())
pro7_support_file_path = Path(userpaths.get_my_documents()) / "ProPresenter"
if os.path.exists(pro7_app_data_location / "PathSettings.proPaths"):
path_settings_file = open(pro7_app_data_location / "PathSettings.proPaths", 'r')
file_lines = path_settings_file.readlines()
Expand Down

0 comments on commit c6d31a4

Please sign in to comment.