diff options
author | Ismaël Bouya <ismael.bouya@fretlink.com> | 2019-10-20 11:47:51 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@fretlink.com> | 2019-10-20 12:05:24 +0200 |
commit | b3951077630d9f8188fe15fca899f75be41ff4fe (patch) | |
tree | e6c1295eaa2c51033a1a2145e58ab4b3b58296ba /music_sampler | |
parent | b798117bb79038ae7495ea4fdb5254d15c7e4b63 (diff) | |
download | MusicSampler-b3951077630d9f8188fe15fca899f75be41ff4fe.tar.gz MusicSampler-b3951077630d9f8188fe15fca899f75be41ff4fe.tar.zst MusicSampler-b3951077630d9f8188fe15fca899f75be41ff4fe.zip |
Add documentation for windows install
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() |