Guest User

Untitled

a guest
Feb 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. import os
  2.  
  3. try:
  4. import os.path
  5. path ='/Users/jacobmeeks/Desktop/Projects/RiggingTool'
  6.  
  7. except:
  8. print 'RIGGING_TOOL_ROOT not configured'
  9. else:
  10. print 'riggingToolRoot'
  11. path = '/Users/jacobmeeks/Desktop/Projects/RiggingTool' + "/modules"
  12.  
  13.  
  14. if not path in sys.path:
  15. sys.path.append(path)
  16. import system.blueprint_UI as blueprint_UI
  17. reload(blueprint_UI)
Add Comment
Please, Sign In to add comment