summaryrefslogtreecommitdiff
path: root/application.rb
diff options
context:
space:
mode:
authormr <mr@mrautenberg.de>2011-05-02 16:35:08 +0200
committermr <mr@mrautenberg.de>2011-05-02 16:35:08 +0200
commit676cc08edeb6c1d37a6e880b5d249499ca8e1223 (patch)
tree0cdf353e77f74a84ef4d68d4482cb580a239630f /application.rb
parentf3c731bfbbc345867812a1b057f213895a196571 (diff)
link to excel csv help on upload error
Diffstat (limited to 'application.rb')
-rw-r--r--application.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/application.rb b/application.rb
index 3d259fd..c261437 100644
--- a/application.rb
+++ b/application.rb
@@ -265,7 +265,7 @@ post '/models' do # create a new model
begin
lazar = OpenTox::Model::Lazar.create(:dataset_uri => @dataset.uri, :prediction_feature => @prediction_feature.uri, :subjectid => subjectid)
rescue => e
- error "Model creation failed with '#{e.message}'."# Please check if the input file is in a valid #{link_to "Excel", "/help"} or #{link_to "CSV", "/csv_format"} format."
+ error "Model creation failed with '#{e.message}'."# Please check if the input file is in a valid #{link_to "Excel", "/help"} or #{link_to "CSV", "/help"} format."
end
task.progress(25)
=begin