fix condition

This commit is contained in:
Kendall Whitman
2026-02-03 19:13:41 -06:00
parent b96a80b4f7
commit 65e62cc887

View File

@@ -6,7 +6,7 @@ from pathlib import Path
def sym_link_dir():
confirm_link = input("Do you want to link home directories to external storage?(Y/n): ")
if confirm_link.lower == "y" or confirm_link.lower == '':
if confirm_link.lower() == "y" or confirm_link.lower() == '':
target_dir = input("Specify the full path to the external storage: ")
def home_dir_item(item):