Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Fix problem where I removed 'container' object due to pylint telling …
Browse files Browse the repository at this point in the history
…me it was obsolete
  • Loading branch information
Graham R Pugh committed Feb 11, 2020
1 parent 1df27d3 commit b1f365c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spruce.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def build_container_report(containers_with_search_paths, jss_objects):
used_object_sets = []
for containers, search in containers_with_search_paths:
search = "container.%s" % search.replace('/',".")
for _ in containers:
for container in containers:
try:
obj = eval(search)
if obj is not None:
Expand Down

0 comments on commit b1f365c

Please sign in to comment.