Skip to content

Commit

Permalink
Merge pull request golismero#19 from Mikaayenson/master
Browse files Browse the repository at this point in the history
Update common.py
  • Loading branch information
MarioVilas authored Nov 26, 2017
2 parents 799316a + 2bc33f9 commit 5e72780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openvas_lib/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def get_connector(host, username, password, port=9390, timeout=None, ssl_verify=
manager = ConnectionManager(host, username, password, port, timeout, ssl_verify)

# Make concrete connector from version
if manager.protocol_version in ("4.0", "5.0", "6.0"):
if manager.protocol_version in ("4.0", "5.0", "6.0", "7.0"):
from openvas_lib.ompv4 import OMPv4
return OMPv4(manager)
else:
Expand Down

0 comments on commit 5e72780

Please sign in to comment.