Geir Engebakken
2013-10-22 11:02:08 UTC
Sorry if this is an obvious error, but I am trying to do the following and get into trouble :
fabfile.py :
import *from util
import a
a.py :
import * from util
util.py defines a fab function func() :
@task
@roles('test')
def func():
Now when I do a fab -list I get the following :
func
a.func
Is this due to fabric, or am I using import statements wrongly?
Geir
fabfile.py :
import *from util
import a
a.py :
import * from util
util.py defines a fab function func() :
@task
@roles('test')
def func():
Now when I do a fab -list I get the following :
func
a.func
Is this due to fabric, or am I using import statements wrongly?
Geir