Skip to content

Commit

Permalink
fix copy pasta mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
patthiel committed Nov 13, 2018
1 parent ef35a5f commit 01e2f45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linodecli/__init__.py
Expand Up @@ -154,8 +154,8 @@ def main():

for i in range(0,len(plugin_content),3):
plugin_proc.append(plugin_content[i:i+3])
if content[i+3:]:
plugin_proc.append(content[i+3:])
if plugin_content[i+3:]:
plugin_proc.append(plugin_content[i+3:])

plugin_table = SingleTable(plugin_proc)
plugin_table.inner_heading_row_border = False
Expand Down

0 comments on commit 01e2f45

Please sign in to comment.