import from same folder
Posted: Tue Feb 04, 2014 3:53 am
I have some general configuration variables that I want to keep outside of my main plugin.
config.py exists inside my plugin folder.
I also put a __init__.py in there for good measure.
I try:
but the variables don't make it into my running script.
Any idea as to why this is?
config.py exists inside my plugin folder.
I also put a __init__.py in there for good measure.
I try:
Code: Select all
from config import *
but the variables don't make it into my running script.
Any idea as to why this is?