diff --git a/python/educational-python/course-creator-python/src/com/jetbrains/edu/coursecreator/CreateFromArchiveProjectStep.java b/python/educational-python/course-creator-python/src/com/jetbrains/edu/coursecreator/CreateFromArchiveProjectStep.java index 033b83e8afda..ba98c77d7713 100644 --- a/python/educational-python/course-creator-python/src/com/jetbrains/edu/coursecreator/CreateFromArchiveProjectStep.java +++ b/python/educational-python/course-creator-python/src/com/jetbrains/edu/coursecreator/CreateFromArchiveProjectStep.java @@ -49,7 +49,7 @@ class CreateFromArchiveProjectStep extends PyCharmNewProjectStep { String zipName = FileUtil.sanitizeFileName(course.getName()); String locationDir = folder.getPath(); CCCreateCourseArchive.createCourseArchive(myProject, myModule, zipName, locationDir, false); - String path = FileUtil.join(folder.getPath(), zipName + ".zip"); + String path = FileUtil.join(FileUtil.toSystemDependentName(folder.getPath()), zipName + ".zip"); StudyProjectGenerator generator = myGenerator.getGenerator(); CourseInfo info = generator.addLocalCourse(path); assert info != null;