Skip to content

Commit

Permalink
Merge pull request #237 from calebstewart/fix-load-command
Browse files Browse the repository at this point in the history
Fixed load command path argument
  • Loading branch information
calebstewart authored Jan 28, 2022
2 parents d67865b + 408dc24 commit 100024f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pwncat/commands/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 100024f

Please sign in to comment.