From f0a8d672caa3330a5af04289a0b18c037ccb8708 Mon Sep 17 00:00:00 2001 From: Peter Cock Date: Thu, 10 Aug 2017 17:02:07 +0100 Subject: [PATCH] Fixing missing brackets in print function As written this only worked on Python 2 --- .github/ISSUE_TEMPLATE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 352bed879..70f064001 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -5,7 +5,7 @@ system as follows: ```python import sys; print(sys.version) -import platform; print platform.python_implementation(); print(platform.platform()) +import platform; print(platform.python_implementation()); print(platform.platform()) import Bio; print(Bio.__version__) ``` @@ -21,4 +21,4 @@ import Bio; print(Bio.__version__) ### Steps to reproduce -(*Please fill this in *) \ No newline at end of file +(*Please fill this in *)