Update news

This commit is contained in:
rocky
2017-10-12 07:06:19 -04:00
parent 47f1d888eb
commit 05fd992c48
5 changed files with 0 additions and 29 deletions

View File

@@ -96,14 +96,10 @@ class PythonParser(GenericASTBuilder):
def fix(c):
s = str(c)
last_token_pos = s.find('_')
<<<<<<< HEAD
if last_token_pos == -1:
return s
else:
return s[:last_token_pos]
=======
return s if last_token_pos == -1 else s[:last_token_pos]
>>>>>>> master
prefix = ''
if parent and tokens: