[FIX] pep8

[FIX] remove unuseful comments
pull/144/head
Damien Crier 2015-06-05 07:56:44 +02:00
parent 392f0ef14a
commit 7a48445c18
2 changed files with 1 additions and 6 deletions

View File

@ -10,17 +10,12 @@ openerp.web_warning_on_save = function (instance) {
var model = self.model; var model = self.model;
var param = {'model': model, var param = {'model': model,
'id': self.datarecord.id ? self.datarecord.id : id}; 'id': self.datarecord.id ? self.datarecord.id : id};
// try {
self.rpc('/web/warning_on_save/check_warning_on_save', param) self.rpc('/web/warning_on_save/check_warning_on_save', param)
.done(function(res) { .done(function(res) {
if (res != false){ if (res != false){
alert(res); alert(res);
} }
}); });
// }
// catch(err){
// // nothing
// }
}) })
}, },
}); });