Skip to content

Commit

Permalink
fix error in example code
Browse files Browse the repository at this point in the history
  • Loading branch information
kivio committed Jun 22, 2016
1 parent e8f75c1 commit 858c581
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ from pysllo.formatters import JsonFormatter
from pysllo.utils import LoggersFactory

# configuration
host, port, limit = 'localhost', 9000
host, port = 'localhost', 9000
handler = ElasticSearchUDPHandler([(host, port)])
formatter = JsonFormatter()
handler.setFormatter(formatter)
Expand Down
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Example
from pysllo.utils import LoggersFactory

# configuration
host, port, limit = 'localhost', 9000
host, port = 'localhost', 9000
handler = ElasticSearchUDPHandler([(host, port)])
formatter = JsonFormatter()
handler.setFormatter(formatter)
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tracking, data binding and raising all logs if error occurs.
from pysllo.utils import LoggersFactory
# configuration
host, port, limit = 'localhost', 9000
host, port = 'localhost', 9000
handler = ElasticSearchUDPHandler([(host, port)])
formatter = JsonFormatter()
handler.setFormatter(formatter)
Expand Down

0 comments on commit 858c581

Please sign in to comment.