1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 11:18:11 +00:00

Fix images_path -> symbols_path

This commit is contained in:
grossmj 2021-09-09 16:58:42 +09:30
parent a8aeb63c91
commit 6d10d92af2

View File

@ -267,7 +267,7 @@ class Node:
try:
if not val.startswith(":") and os.path.isabs(val):
server_config = Config.instance().get_section_config("Server")
default_symbol_directory = os.path.expanduser(server_config.get("images_path", "~/GNS3/symbols"))
default_symbol_directory = os.path.expanduser(server_config.get("symbols_path", "~/GNS3/symbols"))
if os.path.commonprefix([default_symbol_directory, val]) != default_symbol_directory:
val = os.path.basename(val)
except OSError: