diff options
Diffstat (limited to 'music_sampler')
-rw-r--r-- | music_sampler/app.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/music_sampler/app.py b/music_sampler/app.py index 74f0acb..3fd6f51 100644 --- a/music_sampler/app.py +++ b/music_sampler/app.py | |||
@@ -68,5 +68,6 @@ class MusicSamplerApp(App): | |||
68 | return Screen() | 68 | return Screen() |
69 | 69 | ||
70 | def main(): | 70 | def main(): |
71 | Builder.load_file(path() + "/music_sampler.kv") | 71 | with open(path() + "/music_sampler.kv", encoding='utf8') as f: |
72 | Builder.load_string(f.read()) | ||
72 | MusicSamplerApp().run() | 73 | MusicSamplerApp().run() |