Skip to content

Commit 256e8a0

Browse files
committed
fix async
1 parent 899d3da commit 256e8a0

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

debian/changelog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
python-tortik (0.2.6) unstable; urgency=low
2+
3+
* fix async
4+
5+
-- Vitaly Glibin <[email protected]> Tue, 12 Feb 2020 08:36:00 +0300
6+
7+
python-tortik (0.2.5) unstable; urgency=low
8+
9+
* better handle real_ip
10+
11+
-- Vitaly Glibin <[email protected]> Tue, 11 Feb 2020 12:36:00 +0300
12+
113
python-tortik (0.2.3) unstable; urgency=low
214

315
* add supprt for PATCH method

tortik/page/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from tortik.util.dumper import dump
2929
from tortik.util.xml_etree import tostring
3030
from tortik.logger import PageLogger
31-
from tortik.util.async import AsyncGroup
31+
from tortik.util.async_group import AsyncGroup
3232
from tortik.util.parse import parse_xml, parse_json
3333

3434

File renamed without changes.

tortik/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ def __parse_version_from_changelog():
1313
except (IOError, AttributeError):
1414
return None
1515

16-
version = __parse_version_from_changelog() or '0.2.3'
16+
version = __parse_version_from_changelog() or '0.2.6'

0 commit comments

Comments
 (0)