mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
55ba6ed14d
Replaced with the appropriate "in the" and "to the". There are multiple other occurences of this but they are in upstream python modules.
12 lines
338 B
Python
12 lines
338 B
Python
IVERSION = (3, 0, 0)
|
|
VERSION = ".".join(str(i) for i in IVERSION)
|
|
PATHOD = "pathod " + VERSION
|
|
MITMPROXY = "mitmproxy " + VERSION
|
|
|
|
# Serialization format version. This is displayed nowhere, it just needs to be incremented by one
|
|
# for each change in the file format.
|
|
FLOW_FORMAT_VERSION = 5
|
|
|
|
if __name__ == "__main__":
|
|
print(VERSION)
|