Skip to content

Commit be79ab5

Browse files
authored
VM.py: Fix missing f-string (#9)
1 parent 027f05b commit be79ab5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rift/VM.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def prepare(self):
405405
if repo.is_file():
406406
mkdirs.append(f"/rift.{repo.name}")
407407
fstab.append(f"{repo.name} /rift.{repo.name} {self.shared_fs_type} "
408-
"{options} 0 0")
408+
f"{options} 0 0")
409409
url = f"file:///rift.{repo.name}/"
410410
else:
411411
url = repo.url

0 commit comments

Comments
 (0)