From 85706fc26488f9c6387a867c5440a61cb51b8ff0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 27 Mar 2019 11:58:43 +0100 Subject: [PATCH] Updated bug report URLs The project was apparently moved. The issues are closed, too, though, so we could at some point check whether our workarounds can be removed. --- pillar/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pillar/__init__.py b/pillar/__init__.py index f1578ecf..63c7cc36 100644 --- a/pillar/__init__.py +++ b/pillar/__init__.py @@ -790,7 +790,7 @@ class PillarServer(BlinkerCompatibleEve): return 'basic ' + base64.b64encode('%s:%s' % (username, subclient_id)) def post_internal(self, resource: str, payl=None, skip_validation=False): - """Workaround for Eve issue https://github.com/nicolaiarocci/eve/issues/810""" + """Workaround for Eve issue https://github.com/pyeve/eve/issues/810""" from eve.methods.post import post_internal url = self.config['URLS'][resource] @@ -800,7 +800,7 @@ class PillarServer(BlinkerCompatibleEve): def put_internal(self, resource: str, payload=None, concurrency_check=False, skip_validation=False, **lookup): - """Workaround for Eve issue https://github.com/nicolaiarocci/eve/issues/810""" + """Workaround for Eve issue https://github.com/pyeve/eve/issues/810""" from eve.methods.put import put_internal url = self.config['URLS'][resource] @@ -811,7 +811,7 @@ class PillarServer(BlinkerCompatibleEve): def patch_internal(self, resource: str, payload=None, concurrency_check=False, skip_validation=False, **lookup): - """Workaround for Eve issue https://github.com/nicolaiarocci/eve/issues/810""" + """Workaround for Eve issue https://github.com/pyeve/eve/issues/810""" from eve.methods.patch import patch_internal url = self.config['URLS'][resource] @@ -822,7 +822,7 @@ class PillarServer(BlinkerCompatibleEve): def delete_internal(self, resource: str, concurrency_check=False, suppress_callbacks=False, **lookup): - """Workaround for Eve issue https://github.com/nicolaiarocci/eve/issues/810""" + """Workaround for Eve issue https://github.com/pyeve/eve/issues/810""" from eve.methods.delete import deleteitem_internal url = self.config['URLS'][resource]