1

Add a util to dump pythonpath

This commit is contained in:
Evan Pratten 2023-10-30 11:07:51 -04:00
parent 3f50b3af9c
commit 0aaf949dbf

View File

@ -0,0 +1,5 @@
#! /usr/bin/env python
import sys
for entry in sys.path:
print(" - " + entry)