Skip to content

Fix #224: Replace super() call #226

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ Change Log
All notable changes to this code base will be documented in this file,
in every released version.

Version 2.9.x (WIP)
===================

:Released: 2020-xx-yy
:Maintainer:

Features
--------

Bug Fixes
---------

* :gh:`224` (:pr:`226`): Replaced in class ``clean``, ``super(CleanCommand, self).run()`` with
``CleanCommand.run(self)``


Removals
--------


Version 2.9.1
=============
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run_tests(self):

class Clean(CleanCommand):
def run(self):
super(CleanCommand, self).run()
CleanCommand.run(self)
delete_in_root = ["build", ".cache", "dist", ".eggs", "*.egg-info", ".tox"]
delete_everywhere = ["__pycache__", "*.pyc"]
for candidate in delete_in_root:
Expand Down