Skip to content

Commit

Permalink
Fix type Error
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlatr committed Aug 1, 2023
1 parent 38c9730 commit 5960c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion burpa/_burpa.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def __init__(self, api_url: str = "",
api_key=new_api_key or None,
logger=setup_logger('BurpCommander', verbose=verbose, quiet=quiet))

self._logger.info(f"Running Burp Suite version {'.'.join(self._api.burp_version)}")
self._logger.info(f"Running Burp Suite version {'.'.join(str(v) for v in self._api.burp_version)}")

def _start_scan(self, *targets: str, excluded: str = "", config: str = "", config_file: str = "",
app_user: str = "", app_pass: str = "",) -> List[ScanRecord]:
Expand Down

0 comments on commit 5960c28

Please sign in to comment.