mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
Use os.path.join
This commit is contained in:
parent
22299dc585
commit
9c27add968
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class UnsquashOperation:
|
|||
|
||||
imgbasename = os.path.splitext(
|
||||
os.path.basename(entry.source))[0]
|
||||
imgmountdir = source_mount_path + os.sep + imgbasename
|
||||
imgmountdir = os.path.join(source_mount_path, imgbasename)
|
||||
os.mkdir(imgmountdir)
|
||||
self.report_progress()
|
||||
self.unsquash_image(entry, imgmountdir)
|
||||
|
|
Loading…
Add table
Reference in a new issue