Skip to content

Commit fde23a9

Browse files
committed
Fix issue reporting snippets
1 parent 67c6c43 commit fde23a9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ Also run Python and show the output of:
3737
3838
And:
3939
40-
import python-oracledb
41-
print("python-oracledb.version:", python-oracledb.version)
40+
import oracledb
41+
print("oracledb.__version__:", oracledb.__version__)
4242
4343
-->
4444

.github/ISSUE_TEMPLATE/general-questions-and-runtime-problems.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ Also run Python and show the output of:
3838
3939
And:
4040
41-
import python-oracledb
42-
print("python-oracledb.version:", python-oracledb.version)
41+
import oracledb
42+
print("oracledb.__version__:", oracledb.__version__)
4343
4444
-->
4545

0 commit comments

Comments
 (0)