Skip to content

Commit db56bc2

Browse files
TST: print out icon folder path
1 parent f50b0d7 commit db56bc2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/diffpy/pdfgui/gui/pdfguiglobals.py

+5
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ def iconpath(iconfilename):
5959
Return string.
6060
"""
6161
rv = os.path.join(APPDATADIR, 'icons', iconfilename)
62+
print("APPDATADIR")
63+
print(APPDATADIR)
64+
print("rv")
65+
print(rv)
66+
print(os.path.isfile(rv))
6267
assert os.path.isfile(rv), "icon file does not exist"
6368
return rv
6469

0 commit comments

Comments
 (0)