Skip to content

Instantly share code, notes, and snippets.

@boredstiff
Last active August 29, 2015 14:11
Show Gist options
  • Save boredstiff/8e6c9efcff04a3d9f9b6 to your computer and use it in GitHub Desktop.
Save boredstiff/8e6c9efcff04a3d9f9b6 to your computer and use it in GitHub Desktop.
importPaths.py
#python
"""
Modo: print all import paths to the event log.
"""
import lx
platform = lx.service.Platform()
pathCount = platform.ImportPathCount()
for each in range(pathCount):
index = platform.ImportPathByIndex(each)
lx.out(index)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment