NoteHighlight2016
NoteHighlight2016 copied to clipboard
Exception from ShowForm
Exceptions raised after clicking on the language buttons
I'm having this issue too
Can you please provide OneNote page that is having this issue. It seems that some character on page is causing it.
Here you go
def Clean_names(City_name):
# Search for opening bracket in the name followed by
# any characters repeated any number of times
if re.search('\(.*', City_name):
# Extract the position of beginning of pattern
pos = re.search('\(.*', City_name).start()
# return the cleaned name
return City_name[:pos]
else:
# if clean up needed return the same name
return City_name
I don't know why but the Quick Style
Checkbox fixed it...problem fixed for me though.