arcane-flask 2.0.2__tar.gz → 2.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/PKG-INFO +1 -1
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/arcane/flask/tracking.py +1 -1
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/pyproject.toml +1 -1
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/README.md +0 -0
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/arcane/flask/__init__.py +0 -0
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/arcane/flask/authentication.py +0 -0
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/arcane/flask/exception_decorator.py +0 -0
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/arcane/flask/http_response.py +0 -0
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/arcane/flask/log.py +0 -0
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/arcane/flask/services.py +0 -0
- {arcane_flask-2.0.2 → arcane_flask-2.0.3}/arcane/flask/types.py +0 -0
|
@@ -28,7 +28,7 @@ def send_tracking_information(
|
|
|
28
28
|
""" Send pubsub message to the tracking cloud function"""
|
|
29
29
|
|
|
30
30
|
users_query = datastore_client.query(kind='users')
|
|
31
|
-
users_query.add_filter(
|
|
31
|
+
users_query.add_filter('email', '=', email)
|
|
32
32
|
if users_query is None:
|
|
33
33
|
adscale_log(ServiceEnum.TRACKING, f'User {email} is not an Adscale User. Tracking info will not be saved.')
|
|
34
34
|
else:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|