remove debug printing

This commit is contained in:
arvidn 2020-02-04 22:45:32 +01:00
parent 9344dcc9b1
commit 8dffe0def0
1 changed files with 0 additions and 3 deletions

View File

@ -204,7 +204,6 @@ def highlight_signature(s):
def highlight_name(s):
print('highlight: %s' % s)
if '=' in s:
splitter = ' = '
elif '{' in s:
@ -213,9 +212,7 @@ def highlight_name(s):
return s
name = s.split(splitter, 1)
print('split: ', name)
name2 = name[0].split(' ')
print('split2: ', name2)
if len(name2[-1]) == 0:
return s