mirror of https://github.com/kivy/kivy.git
Fix missing 'string.lower()' after cleanup
This commit is contained in:
parent
cce053ce2c
commit
b3707dab81
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue