Skip to content

Commit

Permalink
Fix a bad-super-call pylint error
Browse files Browse the repository at this point in the history
for more info see
pylint-dev/pylint#1109
  • Loading branch information
atodorov committed Dec 24, 2016
1 parent 8b8645a commit 193e3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pelican_ab/__init__.py
Expand Up @@ -27,7 +27,7 @@ def __init__(self, output_path, settings=None):
raise RuntimeError('DELETE_OUTPUT_DIRECTORY is set to True. \
See pelican-ab/README.rst!')

super(self.__class__, self).__init__(output_path, settings)
super(PelicanAbExperimentWriter, self).__init__(output_path, settings)

experiment = os.environ.get(jinja_ab._ENV, jinja_ab._ENV_DEFAULT)
if experiment != jinja_ab._ENV_DEFAULT:
Expand Down

0 comments on commit 193e3db

Please sign in to comment.