Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6"]
python-version: ["3.6", "3.9"]
steps:
- uses: actions/checkout@v3
with:
Expand Down
3 changes: 3 additions & 0 deletions aquilon/netbox2aquilon.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,9 @@ def netbox_copy(self, opts):
""" Copy a device from NetBox to Aquilon """
device = self._netbox_get_device(opts)

aqdesttype = None
aqdestval = None

if opts.sandbox:
aqdesttype = 'sandbox'
aqdestval = opts.sandbox
Expand Down