diff --git a/src/modules/unpackfs/main.py b/src/modules/unpackfs/main.py
index 7823791bf070ac5dd6546391015252f5c1b99d84..926bc0f016c0c185b4ead3023b235d0982856259 100644
--- a/src/modules/unpackfs/main.py
+++ b/src/modules/unpackfs/main.py
@@ -26,7 +26,6 @@ import shutil
 import subprocess
 import sys
 import tempfile
-import platform
 
 from libcalamares import *
 
@@ -282,7 +281,7 @@ def run():
 
         destination = os.path.abspath(root_mount_point + entry["destination"])
 
-        if not os.path.exists(source) or (os.path.isdir(source) and platform.dist()[0] != "blackPanther"): 
+        if not os.path.exists(source): 
             return "Bad source", "source=\"{}\"".format(source)
 
         if not os.path.isdir(destination):