Fix missing 'string.lower()' after cleanup

This commit is contained in:
Suriyan 2014-05-21 21:55:07 +07:00
parent cce053ce2c
commit b3707dab81
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class GestureDatabase(GridLayout):
self.info_popup.text = 'Missing filename' self.info_popup.text = 'Missing filename'
self.info_popup.open() self.info_popup.open()
return return
elif not string.lower(path).endswith('.kg'): elif not string_lower(path).endswith('.kg'):
path += '.kg' path += '.kg'
self.save_selection_to_file(path) self.save_selection_to_file(path)