diff --git a/gns3server/utils/get_resource.py b/gns3server/utils/get_resource.py index 372f4ce4..e50a7e94 100644 --- a/gns3server/utils/get_resource.py +++ b/gns3server/utils/get_resource.py @@ -49,8 +49,6 @@ def get_resource(resource_name): """ resource_path = None - if hasattr(sys, "frozen") and sys.platform.startswith("darwin"): - resource_name = os.path.join(os.path.dirname(sys.executable), "../Resources", resource_name) if hasattr(sys, "frozen") and os.path.exists(resource_name): resource_path = os.path.normpath(os.path.join(os.path.dirname(sys.executable), resource_name)) elif not hasattr(sys, "frozen") and pkg_resources.resource_exists("gns3server", resource_name):