Updated syntax to python3

This commit is contained in:
zlibd 2022-06-29 05:24:01 -04:00 committed by GitHub
parent b0544eab8d
commit 9e5bbd1341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,10 +83,10 @@ Here is a simple example:
.. code-block:: python .. code-block:: python
#!/usr/bin/env python #!/usr/bin/env python3
print "delete firewall group address-group somehosts" print("delete firewall group address-group somehosts")
print "set firewall group address-group somehosts address '192.0.2.3'" print("set firewall group address-group somehosts address '192.0.2.3'")
print "set firewall group address-group somehosts address '203.0.113.55'" print("set firewall group address-group somehosts address '203.0.113.55'")
.. code-block:: none .. code-block:: none