Fix (error create directory).

develop
Самоукин Алексей 14 years ago
parent 54ee9f1c79
commit 96312fdf54

@ -4052,9 +4052,9 @@ variable 'cl-name'"))
templateDirFile)
return ("", False, [])
# Новый путь к директории
applyDir = os.path.join(path, nameDir)
applyDir = pathJoin(path, nameDir)
else:
applyDir = os.path.join(path, os.path.split(applyDir)[1])
applyDir = pathJoin(path, os.path.split(applyDir)[1])
# Фильтрация шаблонов по названию директории
realPath = os.path.join("/",applyDir.partition(self._baseDir)[2])
@ -4270,9 +4270,9 @@ variable 'cl-name'"))
nameFileTemplate)
return ([], False)
# Новый путь к оригинальному файлу
pathOldFile = os.path.join(path,nameFile)
pathOldFile = pathJoin(path,nameFile)
else:
pathOldFile = os.path.join(path,os.path.split(nameFileConfig)[1])
pathOldFile = pathJoin(path,os.path.split(nameFileConfig)[1])
applyFiles = [pathOldFile]
# Фильтрация шаблонов по названию файла
realPath = os.path.join("/",pathOldFile.partition(self._baseDir)[2])

Loading…
Cancel
Save