Skip to content

Commit

Permalink
fix for 0.12.0, namespace error
Browse files Browse the repository at this point in the history
  • Loading branch information
krunch3r76 committed Sep 17, 2023
1 parent 05ac9db commit ea7afe4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions model/offer_lookup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@


class OfferLookup:

# _-_-_-_- __init__ _-_-_-_-
def __init__(self):
self._session_id = "-1"
Expand Down Expand Up @@ -60,7 +59,7 @@ async def __call__(self, id_, subnet_tag, sql, manual_probe=False, appkey=""):
rows.extend(["error", e.status]) # 401 is invalid
# application key
debug.dlog(rows)
except yapapi.rest.configuration.MissingConfiguration:
except yapapi.config.MissingConfiguration:
rows.extend(["error", 401])
except aiohttp.client_exceptions.ClientConnectorError:
rows.extend(["error", 111])
Expand Down

0 comments on commit ea7afe4

Please sign in to comment.