Skip to content

Commit d07baaf

Browse files
committed
Fix for python 2
1 parent 5b9e19b commit d07baaf

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

Changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Changelog
44
=========
55

6+
0.0.2 (2014-08-27)
7+
------------------
8+
9+
Fix for python 2
10+
611
0.0.1 (2014-08-27)
712
------------------
813

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = '0.0.1'
53+
version = '0.0.2'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '0.0.1'
55+
release = '0.0.2'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
from .function import SF
55
from .search import Search
66

7-
VERSION = (0, 0, 1)
7+
VERSION = (0, 0, 2)
88
__version__ = VERSION
99
__versionstr__ = '.'.join(map(str, VERSION))

elasticsearch_dsl/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def _make_dsl_class(base, name, params_def=None):
1818
attrs = {'name': name}
1919
if params_def:
2020
attrs['_param_defs'] = params_def
21-
cls_name = ''.join(s.title() for s in name.split('_'))
21+
cls_name = str(''.join(s.title() for s in name.split('_')))
2222
return type(cls_name, (base, ), attrs)
2323

2424
class AttrList(list):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from os.path import join, dirname
44
from setuptools import setup, find_packages
55

6-
VERSION = (0, 0, 1)
6+
VERSION = (0, 0, 2)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)