Merge pull request #237 from calebstewart/fix-load-command

Fixed load command path argument
This commit is contained in:
Caleb Stewart 2022-01-27 21:39:47 -05:00 committed by GitHub
commit 100024f4c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The Changelog starts with v0.4.1, because we did not keep one before that,
and simply didn't have the time to go back and retroactively create one.
## [Unreleased]
### Changed
- Fixed `Manger.load_modules` call in `pwncat/commands/load.py`.
## [0.5.3] - 2022-01-09
Fix for argument parsing bug introduced in `0.5.2` which caused bind/connect
protocols to be automatically interpreted as SSL even when `--ssl` was not

View File

@ -28,4 +28,4 @@ class Command(CommandDefinition):
def run(self, manager: "pwncat.manager.Manager", args):
manager.load_modules(args.path)
manager.load_modules(*args.path)