mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-02-07 08:43:48 +02:00
Merge branch 'master' into 2.2
This commit is contained in:
commit
3b0d89be5a
@ -69,7 +69,7 @@ GNS3 is perhaps packaged for your distribution:
|
|||||||
- Alpine:
|
- Alpine:
|
||||||
<https://pkgs.alpinelinux.org/package/v3.10/community/x86_64/gns3-server>
|
<https://pkgs.alpinelinux.org/package/v3.10/community/x86_64/gns3-server>
|
||||||
- NixOS:
|
- NixOS:
|
||||||
<https://search.nixos.org/packages?channel=21.11&from=0&size=50&sort=relevance&type=packages&query=gns3-server>
|
<https://search.nixos.org/packages?channel=unstable&from=0&size=50&sort=relevance&type=packages&query=gns3-server>
|
||||||
|
|
||||||
Linux (Debian based)
|
Linux (Debian based)
|
||||||
--------------------
|
--------------------
|
||||||
|
@ -485,7 +485,7 @@ class Node:
|
|||||||
|
|
||||||
# None properties are not be send. Because it can mean the emulator doesn't support it
|
# None properties are not be send. Because it can mean the emulator doesn't support it
|
||||||
for key in list(data.keys()):
|
for key in list(data.keys()):
|
||||||
if data[key] is None or data[key] is {} or key in self.CONTROLLER_ONLY_PROPERTIES:
|
if data[key] is None or data[key] == {} or key in self.CONTROLLER_ONLY_PROPERTIES:
|
||||||
del data[key]
|
del data[key]
|
||||||
|
|
||||||
return data
|
return data
|
||||||
|
Loading…
Reference in New Issue
Block a user