From f04cbc98b1e16106b594451896094c92eab2d844 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Tue, 3 Mar 2020 10:18:58 -0500 Subject: [PATCH] Update issue-form---must-fill-in-this-form-with-every-new-issue-submitted.md --- ...in-this-form-with-every-new-issue-submitted.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/issue-form---must-fill-in-this-form-with-every-new-issue-submitted.md b/.github/ISSUE_TEMPLATE/issue-form---must-fill-in-this-form-with-every-new-issue-submitted.md index c8462f71..4e1da62b 100644 --- a/.github/ISSUE_TEMPLATE/issue-form---must-fill-in-this-form-with-every-new-issue-submitted.md +++ b/.github/ISSUE_TEMPLATE/issue-form---must-fill-in-this-form-with-every-new-issue-submitted.md @@ -45,4 +45,17 @@ _________ Have used another Python GUI Framework (tkiner, Qt, etc) previously (y ### Code To Duplicate -A short program that isolates and demonstrates the problem (i.e. please don't paste a link to your 400 line program.... instead paste your 10 line program in full). Help me help you. +A short program that isolates and demonstrates the problem (i.e. please don't paste a link to your 400 line program.... instead paste your 10 line program in full). + +Yes, it is a pain to narrow down problems, but it's part of the debugging process. Help me help you by providing something that can be executed so that work on getting you a fix or a workaround can immediately begin. + +This pre-formatted code block is all set for you to paste in your bit of code: + +```python +import PySimpleGUI as sg +print(sg) +print(sg.version) + +## Paste your code here + +```