Kill some console logs @poojawins

This commit is contained in:
Rob 2016-06-02 20:17:52 -07:00
parent 3485abd413
commit 8d2df0baff

View file

@ -317,9 +317,7 @@ module.exports = class SpellView extends CocoView
xstart = startOfRow(row)
if language is 'python'
requiredIndent = new RegExp '^' + new Array(xstart / 4 + 2).join '( |\t)' + '(\\S|\\s*$)'
console.log requiredIndent
for crow in [docRange.start.row+1..docRange.end.row]
console.log("CROW", xstart, crow, lines[crow])
unless requiredIndent.test lines[crow]
docRange.end.row = crow - 1
break