Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f126403

Browse files
committed
Fixed setup issue when tornado is not present.
1 parent ea44525 commit f126403

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from distribute_setup import use_setuptools
77
use_setuptools()
88
from setuptools import setup, find_packages
9-
import tornadio
109

1110
try:
1211
license = open('LICENSE').read()
@@ -20,7 +19,7 @@
2019

2120
setup(
2221
name='TornadIO',
23-
version='%s.%s.%s' % tornadio.__version__,
22+
version='0.0.2',
2423
author='Serge S. Koval',
2524
author_email='[email protected]',
2625
packages=['tornadio'],

tornadio/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
tornadio.router
4-
~~~~~~~~~~~~~~~
3+
tornadio.session
4+
~~~~~~~~~~~~~~~~
55
66
Simple heapq-based session implementation with sliding expiration window
77
support.

0 commit comments

Comments
 (0)