Skip to content

Commit

Permalink
Merge pull request #98 from ATIX-AG/fix-python-import
Browse files Browse the repository at this point in the history
Fix missing import in python script
  • Loading branch information
bastian-src authored Dec 4, 2024
2 parents abff7a1 + bdaa6e6 commit 68be7da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
try:
from http.client import HTTPConnection, HTTPSConnection
except ImportError:
from httplib import HTTPSConnection, HTTPSConnection
from httplib import HTTPConnection, HTTPSConnection

import io
import ssl
Expand Down

0 comments on commit 68be7da

Please sign in to comment.