File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
import miniirc , requests , traceback # type: ignore
13
13
14
14
15
- ver = (0 , 0 , 5 )
15
+ ver = (0 , 0 , 6 )
16
16
__version__ = '.' .join (map (str , ver ))
17
17
18
18
@@ -398,7 +398,7 @@ def _update_baseurl(self) -> None:
398
398
# Non-SSL localhost connections are probably to
399
399
# https://github.com/matrix-org/pantalaimon which doesn't support
400
400
# the "v3" URLs yet.
401
- matrix_url = f'http://{ hostname } '
401
+ baseurl = f'http://{ hostname } '
402
402
api_version = 'r0'
403
403
else :
404
404
api_version = 'v3'
Original file line number Diff line number Diff line change 5
5
6
6
setup (
7
7
name = 'miniirc_matrix' ,
8
- version = '0.0.5 ' ,
8
+ version = '0.0.6 ' ,
9
9
py_modules = ['miniirc_matrix' ],
10
10
author = 'luk3yx' ,
11
11
description = 'A Matrix wrapper for miniirc.' ,
You can’t perform that action at this time.
0 commit comments