Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 0c4c836

Browse files
authored
Fix all (#2)
1 parent bf81e1d commit 0c4c836

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

netbox_python/baseapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def all(self, **kwargs):
4242
if not result:
4343
result = page
4444
else:
45-
result.data.append(page.data)
45+
result.data.extend(page.data)
4646

4747
result.pagination["next"] = None
4848
result.pagination["previous"] = None

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.4
2+
current_version = 0.1.5
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
test_suite="tests",
4343
tests_require=test_requirements,
4444
url="https://github.com/netbox-community/netbox_python",
45-
version="0.1.4",
45+
version="0.1.5",
4646
zip_safe=False,
4747
)

0 commit comments

Comments
 (0)