You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And with the following ShopifyAPI/pyactiveresource versions:
pyactiveresource==2.1.2
ShopifyAPI==2.5.0
The following code causes the error Exception Value: cannot use a string pattern on a bytes-like object.
script_url = 'http://someurl.com/path/to.js'
if not shopify.ScriptTag.find(src=script_url):
script = shopify.ScriptTag()
···
Stack:
···
File "dev/lab/shopify-test/shopify_app/api/views.py" in auth
58. if not shopify.ScriptTag.find(src=script_url):
File "dev/env/shopify-test/lib/python3.6/site-packages/pyactiveresource/activeresource.py" in find
385. return cls._find_every(from_=from_, **kwargs)
File "dev/env/shopify-test/lib/python3.6/site-packages/pyactiveresource/activeresource.py" in _find_every
515. prefix_options, query_options = cls._split_options(kwargs)
File "dev/env/shopify-test/lib/python3.6/site-packages/pyactiveresource/activeresource.py" in _split_options
466. if key in cls._prefix_parameters():
File "dev/env/shopify-test/lib/python3.6/site-packages/pyactiveresource/activeresource.py" in _prefix_parameters
720. for match in template.pattern.finditer(path):
Exception Type: TypeError at /api/auth/
Exception Value: cannot use a string pattern on a bytes-like object
The text was updated successfully, but these errors were encountered:
Using django and python versions:
And with the following ShopifyAPI/pyactiveresource versions:
The following code causes the error
Exception Value: cannot use a string pattern on a bytes-like object
.Stack:
The text was updated successfully, but these errors were encountered: