Commit 3a4084ba authored by Andrey Filippov's avatar Andrey Filippov
Browse files

fixing raw partition to be recognized as PTTYPE='atari'

parent b4d10f49
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+3 −0
Original line number Diff line number Diff line
attic/*
.directory
*.pyc
+1 −1
Original line number Diff line number Diff line
@@ -201,7 +201,7 @@ class PC():

  def is_raw(self,part):
    res = shout("sudo blkid | grep "+str(part))
    typ = "TYPE="
    typ = " TYPE=" # added space, otherwise: /dev/sdd2: PTTYPE="atari" PARTUUID="e174570b-02"
    s0 = re.search(typ,res)
    if s0:
      fstype = ""