Skip to content

Commit

Permalink
Fix trailing spaces in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rejahrehim committed Jul 20, 2019
1 parent 415c702 commit b96b0be
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"libnetfilter-queue-dev": {"debian": "sudo apt-get install "
"build-essential python-dev "
"libnetfilter-queue-dev"},
"clamav": {"debian" : "sudo apt-get install clamav"}
"clamav": {"debian": "sudo apt-get install clamav"}
}


Expand Down Expand Up @@ -145,7 +145,10 @@ def verify_installation(output):
Returns:
TYPE: bool
"""
found = re.findall(r'([0-9]+\supgraded).*([0-9]+\snewly installed)', output)
found = re.findall(
r'([0-9]+\supgraded).*([0-9]+\snewly installed)',
output
)

upgraded = found[0][0]
installed = found[0][1]
Expand Down

0 comments on commit b96b0be

Please sign in to comment.