Updated Community Guidelines (markdown)

dessant 2015-12-31 15:04:10 +02:00
parent 0dfe9c8834
commit 90abe026fd
1 changed files with 3 additions and 0 deletions

@ -7,6 +7,9 @@ When you ask for help, remember that you are asking other busy people around the
2. Try to contain your example following this template. When everything is all in one file it lowers the amount of effort it takes for someone to run your app and find the problem. Ensure your question code (a) runs and (b) contains only code related to your problem (most bugs can be reproduced in an app with less than 50 lines, one needs to have a _very_ good reason to post a longer example). This will ensure the speediest potential answer to your question. 2. Try to contain your example following this template. When everything is all in one file it lowers the amount of effort it takes for someone to run your app and find the problem. Ensure your question code (a) runs and (b) contains only code related to your problem (most bugs can be reproduced in an app with less than 50 lines, one needs to have a _very_ good reason to post a longer example). This will ensure the speediest potential answer to your question.
```python ```python
from kivy.config import Config
Config.set('kivy', 'log_level', 'debug')
from kivy.app import App from kivy.app import App
from kivy.lang import Builder from kivy.lang import Builder
from kivy.factory import Factory from kivy.factory import Factory