From 42735127ef0e5b94e9a2bbff3203173ad613427e Mon Sep 17 00:00:00 2001 From: Janez K Date: Thu, 6 Feb 2014 12:54:58 +0100 Subject: [PATCH] fix on uci_dataset widget --- workflows/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflows/library.py b/workflows/library.py index fac3261..8b69827 100755 --- a/workflows/library.py +++ b/workflows/library.py @@ -701,7 +701,7 @@ def uci_to_odt(input_dict): from mothra.settings import FILES_FOLDER import orange output_dict = {} - output_dict['data'] = orange.ExampleTable(FILES_FOLDER+"uci-datasets\\"+input_dict['filename']) + output_dict['data'] = orange.ExampleTable(FILES_FOLDER+"uci-datasets/"+input_dict['filename']) return output_dict def odt_to_arff(input_dict): -- GitLab