om.find is ignoring case which is ok on Windows, but Linux treats folders of identical characters but varying case as separate folders.
# On Linux
>>> True if find('/home/Marcus', 'age') else False
True
>>> True if find('/home/Mmarcus', 'age') else False
False
# On Windows
>>> True if find('/home/Marcus', 'age') else False
True
>>> True if find('/home/Mmarcus', 'age') else False
True
om.find is ignoring case which is ok on Windows, but Linux treats folders of identical characters but varying case as separate folders.