Skip to content

Commit

Permalink
Minor improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
MPCodeWriter21 committed Jul 25, 2022
1 parent 40de878 commit 8cf43d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ProxyEater/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ProxyEater
# CodeWriter21

__version__ = "1.4.4"
__version__ = "1.4.5"
__author__ = "CodeWriter21"
__email__ = "[email protected]"
__license__ = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions ProxyEater/__main__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ProxyEater.__main__.py
# CodeWriter21
import os
import sys
import json
import shutil
import pathlib

import log21
Expand Down Expand Up @@ -255,7 +255,7 @@ def main():
check(args)
except KeyboardInterrupt:
try:
terminal_size = os.get_terminal_size()[0]
terminal_size = shutil.get_terminal_size().columns
except OSError:
terminal_size = 50
if not terminal_size:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ProxyEater\[1.4.4\]
ProxyEater\[1.4.5\]
===================

![version](https://img.shields.io/pypi/v/ProxyEater)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='ProxyEater',
version='1.4.4',
version='1.4.5',
author='CodeWriter21',
author_email='[email protected]',
description='A Python Proxy Scraper for gathering fresh proxies.',
Expand Down

0 comments on commit 8cf43d2

Please sign in to comment.