Skip to content

Commit 05ea3cc

Browse files
committed
Correct package_names list corruption
1 parent 18528d2 commit 05ea3cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

addonmanager_workers_startup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ def __init__(self):
7878
# These addons will print an additional message informing the user Python2 only
7979
self.py2only = []
8080

81-
self.package_names = fci.DataPaths().mod_dir
81+
self.package_names = []
82+
self.moddir = fci.DataPaths().mod_dir
8283
self.current_thread = None
8384

8485
self.git_manager = initialize_git()

0 commit comments

Comments
 (0)