Merge branch 'develop' into feature

This commit is contained in:
Jeremy Stretch
2021-03-26 10:53:21 -04:00
3 changed files with 11 additions and 3 deletions

View File

@@ -2251,7 +2251,7 @@ class PathTraceView(generic.ObjectView):
path = related_paths.first()
# Get the total length of the cable and whether the length is definitive (fully defined)
total_length, is_definitive = path.get_total_length if path else (None, False)
total_length, is_definitive = path.get_total_length() if path else (None, False)
return {
'path': path,