6
0
Eric Tröbs 4 سال پیش
والد
کامیت
9f6a385133
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      pycs/projects/ProjectManager.py

+ 4 - 1
pycs/projects/ProjectManager.py

@@ -91,7 +91,10 @@ class ProjectManager(ObservableDict):
 
 
         # get identifiers
         # get identifiers
         if identifiers is None:
         if identifiers is None:
-            identifiers = list(project['data'].keys())
+            if project['unmanaged'] is None:
+                identifiers = list(project['data'].keys())
+            else:
+                identifiers = project.unmanaged_files_keys
 
 
         # run prediction
         # run prediction
         project.predict(identifiers)
         project.predict(identifiers)