X-Git-Url: https://code.grnet.gr/git/snf-image-creator/blobdiff_plain/c0240ac1cb1c4433314e5b0e766c9d7bef05bfa7..7bf9352417c6b43eea0b875b91e081cfc5a71c5e:/image_creator/gpt.py diff --git a/image_creator/gpt.py b/image_creator/gpt.py index 1a7ed04..f6f1cc2 100644 --- a/image_creator/gpt.py +++ b/image_creator/gpt.py @@ -232,7 +232,7 @@ class GPTPartitionTable(object): def __init__(self, disk): self.disk = disk with open(disk, "rb") as d: - #MBR (Logical block address 0) + # MBR (Logical block address 0) lba0 = d.read(BLOCKSIZE) self.mbr = MBR(lba0)