From d0e52a6276827e1a85c7349e1d3f22587bbcc6a9 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Tue, 3 Mar 2020 10:15:23 -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 65b5bfb5..c8462f71 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 @@ -15,6 +15,15 @@ assignees: '' ### PySimpleGUI Port and Version +This is critical to know. Knowing where your PySimpleGUI.py file is located is just as important. You can get these by adding this to the top of your file and running it: + +```python +import PySimpleGUI as sg +print(sg) +print(sg.version) +``` + + ### Your Experience Levels In Months or Years _________ Python programming experience @@ -32,4 +41,8 @@ _________ Have used another Python GUI Framework (tkiner, Qt, etc) previously (y - [ ] Searched through Issues (open and closed) to see if already reported -### Code or partial code causing the problem +### Description of Problem / Question / Details + +### 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.