From 90abe026fd2740032b3b0e7698e125038bb0a3c2 Mon Sep 17 00:00:00 2001 From: dessant Date: Thu, 31 Dec 2015 15:04:10 +0200 Subject: [PATCH] Updated Community Guidelines (markdown) --- Community Guidelines.md => Community-Guidelines.md | 3 +++ 1 file changed, 3 insertions(+) rename Community Guidelines.md => Community-Guidelines.md (97%) diff --git a/Community Guidelines.md b/Community-Guidelines.md similarity index 97% rename from Community Guidelines.md rename to Community-Guidelines.md index a486bae..5fc0c01 100644 --- a/Community Guidelines.md +++ b/Community-Guidelines.md @@ -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. ```python + from kivy.config import Config + Config.set('kivy', 'log_level', 'debug') + from kivy.app import App from kivy.lang import Builder from kivy.factory import Factory