From 270b20d3858449e9a0de77b07a2a72db4edb13ef Mon Sep 17 00:00:00 2001
From: Thor77 <thor77@thor77.org>
Date: Fri, 24 Mar 2017 23:19:48 +0100
Subject: [PATCH] Fix E501 (line too long)

---
 tsstats/__main__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tsstats/__main__.py b/tsstats/__main__.py
index 8ae57e4..7bbea3e 100644
--- a/tsstats/__main__.py
+++ b/tsstats/__main__.py
@@ -32,7 +32,8 @@ def cli():
     )
     parser.add_argument(
         '-l', '--log',
-        type=str, help='path to your logfile(s). pass a directory to use all logfiles inside it'
+        type=str, help='path to your logfile(s). '
+        'pass a directory to use all logfiles inside it'
     )
     parser.add_argument(
         '-o', '--output',