NoteHighlight2016 icon indicating copy to clipboard operation
NoteHighlight2016 copied to clipboard

Exception from ShowForm

Open greasycat opened this issue 5 years ago • 4 comments

Exceptions raised after clicking on the language buttons Annotation 2019-05-23 185712

greasycat avatar May 23 '19 10:05 greasycat

I'm having this issue too

renankaic avatar Jun 10 '19 13:06 renankaic

Can you please provide OneNote page that is having this issue. It seems that some character on page is causing it.

elvirbrk avatar Jun 11 '19 10:06 elvirbrk

image 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 

adhadse avatar Aug 15 '20 08:08 adhadse

I don't know why but the Quick Style Checkbox fixed it...problem fixed for me though.

adhadse avatar Aug 15 '20 08:08 adhadse