Deleting a stray 'print' statement

This was put in for debugging at some point.
This commit is contained in:
Strahinja Val Markovic 2013-09-16 17:53:19 -07:00
parent 1d29a9a3bd
commit fba4477ca3

View File

@ -59,7 +59,6 @@ class JediCompleter( ThreadedCompleter ):
# Jedi expects lines to start at 1, not 0 # Jedi expects lines to start at 1, not 0
line = request_data[ 'line_num' ] + 1 line = request_data[ 'line_num' ] + 1
column = request_data[ 'column_num' ] column = request_data[ 'column_num' ]
print contents
return jedi.Script( contents, line, column, filename ) return jedi.Script( contents, line, column, filename )