mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
Fixed Unclosed File
This commit is contained in:
parent
8e1480431a
commit
9419d07a98
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ def run():
|
|||
if os.path.isfile(PATH_PROCFS) and os.access(PATH_PROCFS, os.R_OK):
|
||||
procfile = open(PATH_PROCFS, 'r')
|
||||
filesystems = procfile.read()
|
||||
procfile.close
|
||||
procfile.close()
|
||||
|
||||
filesystems = filesystems.replace("nodev", "")
|
||||
filesystems = filesystems.replace("\t", "")
|
||||
|
|
Loading…
Add table
Reference in a new issue