Skip to content

Commit 015f8be

Browse files
committed
Changed default resource path key, in order to avoid override the remi standard one.
1 parent d2429e1 commit 015f8be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/prototypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class %(classname)s(App):
4040
def __init__(self, *args, **kwargs):
4141
#DON'T MAKE CHANGES HERE, THIS METHOD GETS OVERWRITTEN WHEN SAVING IN THE EDITOR
4242
if not 'editing_mode' in kwargs.keys():
43-
super(%(classname)s, self).__init__(*args, static_file_path={'res':'%(config_resourcepath)s'})
43+
super(%(classname)s, self).__init__(*args, static_file_path={'my_res':'%(config_resourcepath)s'})
4444
4545
def idle(self):
4646
#idle function called every update cycle

0 commit comments

Comments
 (0)