Skip to content

Commit

Permalink
Merge pull request #156 from lolletsoc/master
Browse files Browse the repository at this point in the history
Fixed 'using' keyword param not being saved when passed
  • Loading branch information
honzakral committed May 11, 2015
2 parents 32c1749 + 3e5259c commit 01eacb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elasticsearch_dsl/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def __init__(self, name, using='default'):
self._name = name
self._doc_types = {}
self._mappings = {}
self._using = 'default'
self._using = using
self._settings = {}

def _get_connection(self):
Expand Down

0 comments on commit 01eacb5

Please sign in to comment.