Skip to content

Commit 37f1419

Browse files
authored
Merge pull request #13 from adator85/dev
V0.1.5
2 parents 6c3975c + b3b52aa commit 37f1419

File tree

6 files changed

+4
-6
lines changed

6 files changed

+4
-6
lines changed
30.6 KB
Binary file not shown.

dist/unrealircd_rpc_py-0.1.5.tar.gz

21 KB
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='unrealircd_rpc_py',
5-
version='0.1.4',
5+
version='0.1.5',
66
packages=find_packages(),
77
install_requires=[
88
"requests>=2.25.1"

unrealircd_rpc_py/Connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import json.scanner
2-
import requests, json, urllib3, socket, re, sys, os
2+
import requests, json, urllib3, socket, re, os
33
from requests.auth import HTTPBasicAuth
44
import base64, ssl, time, logging, random
55
from typing import Literal, Union

unrealircd_rpc_py/Live.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import json.scanner
2-
import json, socket, sys, os
2+
import json, socket, os
33
import time, logging, random, asyncio
44
from typing import Literal, Union
55
from types import SimpleNamespace
@@ -88,12 +88,10 @@ async def __send_to_permanent_unixsocket(self):
8888

8989
except AttributeError as attrerr:
9090
self.Logs.critical(f'AF_Unix Error: {attrerr}')
91-
sys.exit('AF_UNIX Are you sure you want to use Unix socket ?')
9291
except TimeoutError as timeouterr:
9392
self.Logs.critical(f'Timeout Error: {timeouterr}')
9493
except OSError as oserr:
9594
self.Logs.critical(f'System Error: {oserr}')
96-
sys.exit(3)
9795
except json.decoder.JSONDecodeError as jsondecoderror:
9896
self.Logs.critical(f'Json Decod Error: {jsondecoderror}')
9997
except Exception as err:

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "0.1.4"
2+
"version": "0.1.5"
33
}

0 commit comments

Comments
 (0)