Skip to content

Commit af6a763

Browse files
committed
Bugfix
1 parent 0b4d14b commit af6a763

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

miniirc_matrix.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import miniirc, requests, traceback # type: ignore
1313

1414

15-
ver = (0, 0, 5)
15+
ver = (0, 0, 6)
1616
__version__ = '.'.join(map(str, ver))
1717

1818

@@ -398,7 +398,7 @@ def _update_baseurl(self) -> None:
398398
# Non-SSL localhost connections are probably to
399399
# https://github.com/matrix-org/pantalaimon which doesn't support
400400
# the "v3" URLs yet.
401-
matrix_url = f'http://{hostname}'
401+
baseurl = f'http://{hostname}'
402402
api_version = 'r0'
403403
else:
404404
api_version = 'v3'

setup.py

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

66
setup(
77
name='miniirc_matrix',
8-
version='0.0.5',
8+
version='0.0.6',
99
py_modules=['miniirc_matrix'],
1010
author='luk3yx',
1111
description='A Matrix wrapper for miniirc.',

0 commit comments

Comments
 (0)