Skip to content

Commit 800cee3

Browse files
committed
[ompd] - Fix init import of ompd.
Due to moving location to share/gdb/python/ompd, the parent dir needs specified in the import or else the module is not properly found. Change-Id: I6e0d94e4f5b97e5d606bc5f707c4341cce8da150
1 parent dab6115 commit 800cee3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openmp/libompd/gdb-plugin/ompd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
try:
77
sys.path.append(os.path.dirname(__file__))
88

9-
import ompd
9+
from ompd import ompd
1010

1111
ompd.main()
1212
print("OMPD GDB support loaded")

0 commit comments

Comments
 (0)