From df547c79bd3e949a60b5d5267b49abab7015c620 Mon Sep 17 00:00:00 2001
From: Seblu <sebastien.luttringer@smartjog.com>
Date: Mon, 25 Jul 2011 14:32:30 +0200
Subject: [PATCH] fix bad detection of destination file type during extraction

this cause block device to be detected as an invalid destination during payload extraction
---
 installsystems/image.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/installsystems/image.py b/installsystems/image.py
index 502f24c..15b1b2b 100644
--- a/installsystems/image.py
+++ b/installsystems/image.py
@@ -662,8 +662,8 @@ class Payload(object):
             dest = os.path.join(dest, self.name)
         # check validity of dest
         if os.path.exists(dest):
-            if not os.path.isfile(dest):
-                raise Exception("Destination %s is not a file" % dest)
+            if os.path.isdir(dest):
+                raise Exception("Destination %s is a directory" % dest)
             if not force:
                 raise Exception("File %s already exists" % dest)
         # opening destination
-- 
GitLab