Remove unused follow_circuits arg for cable tracing

This commit is contained in:
Jeremy Stretch
2020-03-18 21:14:53 -04:00
parent 40bfb55370
commit e143158f12
3 changed files with 6 additions and 6 deletions

View File

@@ -2019,7 +2019,7 @@ class CableTraceView(PermissionRequiredMixin, View):
def get(self, request, model, pk):
obj = get_object_or_404(model, pk=pk)
trace = obj.trace(follow_circuits=True)
trace = obj.trace()
total_length = sum([entry[1]._abs_length for entry in trace if entry[1] and entry[1]._abs_length])
return render(request, 'dcim/cable_trace.html', {