Merge pull request #1344 from ogayot/lint-jammy

filesystem: fix use of f-string without placeholder
This commit is contained in:
Dan Bungert 2022-07-08 07:55:57 -06:00 committed by GitHub
commit c6078bd77c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ class FilesystemController(SubiquityController, FilesystemManipulator):
# find what's left of the gap after adding boot # find what's left of the gap after adding boot
gap = gaps.within(disk, gap) gap = gaps.within(disk, gap)
if gap is None: if gap is None:
raise Exception(f'failed to locate gap after adding boot') raise Exception('failed to locate gap after adding boot')
return disk, gap return disk, gap
def guided_direct(self, target, mode=None): def guided_direct(self, target, mode=None):