Skip to content

Commit

Permalink
Using NOCOLOR env.var to workaround cygncurses bug under cygwin.
Browse files Browse the repository at this point in the history
  • Loading branch information
pearu committed Feb 2, 2004
1 parent e901934 commit 23dc54f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -33,7 +33,7 @@ def setup_package():
sys.path.insert(0,os.path.join(local_path,n))
try:
mod = __import__('setup_'+n)
configs.append(mod.configuration())
configs.append(mod.configuration(parent_path=local_path))
mod = __import__(n+'_version')
versions.append(mod)
finally:
Expand Down
3 changes: 2 additions & 1 deletion weave/setup_weave.py
Expand Up @@ -4,7 +4,8 @@
from glob import glob
from scipy_distutils.misc_util import get_path, default_config_dict, dot_join

def configuration(parent_package='',parent_path2=None):
def configuration(parent_package='',parent_path=None):
parent_path2 = parent_path
parent_path = parent_package
local_path = get_path(__name__,parent_path2)
config = default_config_dict('weave',parent_package)
Expand Down

0 comments on commit 23dc54f

Please sign in to comment.