We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to use the console from windows I get a key error as described in this post on StackOverflow.
FIX: Replace os.environ["HOME"] with os.path.expanduser('~') on line 90 in scripts/shopify_api.py
os.environ["HOME"]
os.path.expanduser('~')
scripts/shopify_api.py
Proposed fix needs to be tested on Linux and Mac. Works on Windows 7 x64.
The text was updated successfully, but these errors were encountered:
Tested it on Linux, worked fine, all tests passed. Should work on Mac as well although I can only test it by monday
Sorry, something went wrong.
Wow... Why hasn't this been fixed yet....
No branches or pull requests
When trying to use the console from windows I get a key error as described in this post on StackOverflow.
FIX:
Replace
os.environ["HOME"]
withos.path.expanduser('~')
on line 90 inscripts/shopify_api.py
Proposed fix needs to be tested on Linux and Mac. Works on Windows 7 x64.
The text was updated successfully, but these errors were encountered: