Skip to content

Commit cbe9afa

Browse files
committed
fix problem of logger import
1 parent 49a4538 commit cbe9afa

8 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# <img src="https://github.com/nxenon/h2spacex/assets/61124903/fd6387bf-15e8-4a5d-816b-cf5e079e07cc" width="20%" valign="middle" alt="H2SpaceX" />&nbsp;&nbsp; H2SpaceX
22

3-
[![pypi: 1.0.2](https://img.shields.io/badge/pypi-1.0.2-8c34eb.svg)](https://pypi.org/project/h2spacex/)
3+
[![pypi: 1.0.3](https://img.shields.io/badge/pypi-1.0.3-8c34eb.svg)](https://pypi.org/project/h2spacex/)
44
[![Python: 3.10](https://img.shields.io/badge/Python->=3.10-blue.svg)](https://www.python.org)
55
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-006112.svg)](https://github.com/nxenon/h2spacex/blob/main/LICENSE)
66

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "h2spacex"
7-
version = "1.0.2"
7+
version = "1.0.3"
88
authors = [
99
{ name="nxenon", email="[email protected]" },
1010
]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='h2spacex',
8-
version='1.0.2',
8+
version='1.0.3',
99
description='HTTP/2 Single Packet Attack low level library based on Scapy',
1010
package_dir={"": "src"},
1111
packages=find_packages(where="src"),

src/h2spacex/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from .h2_tls_connection import H2OnTlsConnection
33
from . import h2_frames
44
from . import utils
5-
from . import modules
5+
from . import logger

src/h2spacex/h2_connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from scapy.all import hex_bytes
1010
from . import h2_frames, utils
1111
import socks
12-
from .modules.logger import Logger
12+
from .logger import Logger
1313
logger = Logger()
1414

1515

src/h2spacex/h2_frames.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import gzip
44
import brotli
55
import zlib
6-
from .modules.logger import Logger
6+
from .logger import Logger
77
logger = Logger()
88

99

src/h2spacex/h2_tls_connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from . import h2_frames
77
import ssl
8-
from .modules.logger import Logger
8+
from .logger import Logger
99
logger = Logger()
1010

1111

File renamed without changes.

0 commit comments

Comments
 (0)