abstractfactory / openmetadata

associate metadata with your folders
Other
45 stars 8 forks source link

Case-insensivitiy on Linux #23

Closed mottosso closed 10 years ago

mottosso commented 10 years ago

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