-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simply needed to import RFCReference to fix the issue.
- Loading branch information
1 parent
d09f415
commit 6bead68
Showing
3 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/python3 | ||
# ratched - TLS connection router that performs a man-in-the-middle attack | ||
# Copyright (C) 2017-2017 Johannes Bauer | ||
# Copyright (C) 2017-2019 Johannes Bauer | ||
# | ||
# This file is part of ratched. | ||
# | ||
|
@@ -19,9 +19,10 @@ | |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
# | ||
# Johannes Bauer <[email protected]> | ||
|
||
import re | ||
|
||
class Patcher(object): | ||
class Patcher(): | ||
def __init__(self, filename, filetype = "c"): | ||
assert(filetype in [ "c", "markdown" ]) | ||
self._filename = filename | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters