Skip to content

Commit

Permalink
ovsdb: Consistency list manipulation, += vs extend/append
Browse files Browse the repository at this point in the history
  • Loading branch information
fnordahl committed Sep 12, 2022
1 parent 5195b15 commit 9732835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charmhelpers/contrib/network/ovs/ovsdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def _get_command(self):
cmd = [self._tool]
if self._args:
cmd.extend(self._args)
cmd += ['-f', 'json']
cmd.extend(['-f', 'json'])
return cmd

def _find_tbl(self, condition=None):
Expand Down

0 comments on commit 9732835

Please sign in to comment.