Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. ├── __init__.py
  2. ├── metadata.txt
  3. ├── pluginMain.py
  4. ├── plugin_ui.py
  5. ├── plugin_ui.ui
  6. ├── resources.qrc
  7. ├── resources_rc.py
  8. ├── sub
  9. │   ├── __init__.py
  10. │   └── qcf.py
  11. ├── ui.py
  12.  
  13. import sub.qcf
  14. print sub.qcf
  15.  
  16. File "/Users/.../.qgis2/python/plugins/.../ui.py", line 26, in
  17. print sub.qcf
  18. AttributeError: 'module' object has no attribute 'qcf'
  19.  
  20. Python 2.7.11 (default, Dec 7 2015, 12:36:04)
  21. [GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.72)] on darwin
  22. Type "help", "copyright", "credits" or "license" for more information.
  23. >>> import sub.qcf
  24. >>> print sub.qcf
  25. <module 'sub.qcf' from 'sub/qcf.pyc'>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement