Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
peace-maker committed Nov 24, 2023
1 parent ae1d4c6 commit 55e8354
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The table below shows which release corresponds to each branch, and what date th

## 4.13.0 (`dev`)
- [#2281][2281] FIX: Getting right amount of data for search fix
- [#1763][1763] Add env_add to the process module
- [#1763][1763] Allow to add to the existing environment in `process` instead of replacing it

[2281]: https://github.com/Gallopsled/pwntools/pull/2281
[1763]: https://github.com/Gallopsled/pwntools/pull/1763
Expand Down
2 changes: 1 addition & 1 deletion pwnlib/tubes/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def __init__(self, argv = None,
#: Environment passed on envp
self.env = {} if ignore_environ else dict(getattr(os, "environb", os.environ))

# Add environmemnt variables as needed
# Add environment variables as needed
self.env.update(env_val or {})

self._cwd = os.path.realpath(cwd or os.path.curdir)
Expand Down

0 comments on commit 55e8354

Please sign in to comment.