File fix-super.patch of Package python-pytest-codestyle
Index: pytest-pycodestyle-1.3.0/pytest_codestyle.py
===================================================================
--- pytest-pycodestyle-1.3.0.orig/pytest_codestyle.py
+++ pytest-pycodestyle-1.3.0/pytest_codestyle.py
@@ -34,7 +34,7 @@ class Item(pytest.Item, pytest.File):
CACHE_KEY = 'codestyle/mtimes'
def __init__(self, path, parent):
- super().__init__(path, parent)
+ super(Item, self).__init__(path, parent)
self.add_marker('codestyle')
def setup(self):