Skip to content
Snippets Groups Projects
Commit 9d9710c3 authored by Sébastien Helleu's avatar Sébastien Helleu
Browse files

Fix some pylint warnings

parent 85c06962
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -41,13 +41,14 @@ from __future__ import division, print_function
import argparse
import datetime
import os
import pygal
import re
import select
import subprocess
import sys
import traceback
 
import pygal
VERSION = '1.3-dev'
 
 
Loading
Loading
@@ -353,7 +354,7 @@ class GitChart(object):
try:
# call method to build chart (name of method is dynamic)
return getattr(self, '_chart_' + self.chart_name)()
except Exception:
except Exception: # pylint: disable=broad-except
traceback.print_exc()
return False
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment