diff -r c7c26511138f -r 7c4a911dc066 buildframework/helium/sf/python/pythoncore/lib/docs.py --- a/buildframework/helium/sf/python/pythoncore/lib/docs.py Wed Jun 16 16:51:40 2010 +0300 +++ b/buildframework/helium/sf/python/pythoncore/lib/docs.py Fri Aug 13 14:59:05 2010 +0300 @@ -35,7 +35,7 @@ filePath = os.path.abspath(os.path.join(root, fname)) with open(filePath) as f_file: filePathAmara = 'file:///'+ filePath.replace('\\','/') - curPrj=amara.parse(filePathAmara) + curPrj = amara.parse(filePathAmara) for line in f_file: linePattern = re.compile('^import') lineMatch = linePattern.search(line) @@ -47,7 +47,7 @@ try: importModule = __import__(curModule) if hasattr(importModule, '__file__'): - modulePath=importModule.__file__ + modulePath = importModule.__file__ if 'helium' in modulePath: for projectList in dbPrj.antDatabase.project: if (projectList.name == curPrj.project.name):