diff --git a/pagure/templates/edit_file.html b/pagure/templates/edit_file.html
index 18e956e..d1c7dfe 100644
--- a/pagure/templates/edit_file.html
+++ b/pagure/templates/edit_file.html
@@ -120,10 +120,8 @@ var lbranch = $('#branch').html();
$("input[name=braction]:radio").change(function (e) {
if ($(e.currentTarget).val() == 'new'){
- console.log('new');
$('#branch').html('');
} else {
- console.log('not new');
$('#branch').html(lbranch);
}
});