Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
José Otávio Rizzatti Ferreira authored and José Otávio Rizzatti Ferreira committed Apr 25, 2016
1 parent aa19533 commit 0a4214c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luigi/contrib/hdfs/hive_server2_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def connection(self):
if hasattr(self, '_conn'):
return self._conn
from pyhive import hive
self.conn = hive.connect(host=self._host, port=self._port, username=self._username, database=self._database)
self._conn = hive.connect(host=self._host, port=self._port, username=self._username, database=self._database)
return self._conn

def cursor(self):
Expand Down

0 comments on commit 0a4214c

Please sign in to comment.