Skip to content

Commit 0120010

Browse files
author
Capirca Team
committed
fix: Add newline to end of cisco output when removing duplicates.
PiperOrigin-RevId: 750279566
1 parent 96affde commit 0120010

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

capirca/lib/cisco.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1408,5 +1408,5 @@ def __str__(self):
14081408
if not configure_replace_compatible:
14091409
target += ['', 'exit', '']
14101410
if self.remove_duplicate_network_objectgroups:
1411-
return self._remove_duplicate_objects('\n'.join(target))
1411+
return self._remove_duplicate_objects('\n'.join(target)) + '\n'
14121412
return '\n'.join(target)

0 commit comments

Comments
 (0)