Alexander Lill
Alexander Lill
Also happening for me. Atom crashing with the above error message. OS X 10.13.5 (17F77) Atom 1.28.0 ``` Error: Cannot find module '_debugger' at Module._resolveFilename (module.js:543:15) at Module._resolveFilename (/Applications/Atom.app/Contents/Resources/electron.asar/common/reset-search-paths.js:35:12) at...
@ededdneddyfan I can't even find the line `import quote_plus` in this repo so that we could fix it here instead of creating manually-edited workarounds. @sarumont any hints?
I am using it now just with `from trello.trelloclient import TrelloClient` and everything seems to work, maybe you can verify this @ededdneddyfan and this issue resolved itself :) (I am...
This is probably due to the fact, that Jira has deprecated authentication with Username/Password for some instances, see here: https://confluence.atlassian.com/cloud/deprecation-of-basic-authentication-with-passwords-for-jira-and-confluence-apis-972355348.html Unfortunately it seems that using an API token is not...
Just from my little experience from my last MR: 1. Install `pipenv` (example for OSX with brew: `brew install pipenv`) 2. Install dependencies for this project with `pipenv install` 3....
I used `pyinstaller` in the past, which might work for this. The following is a snippet from another (private) project which might almost work as is. It will create the...
If I remember correctly the program should output which lines are not recognized when you run it with `--debug` - the appearing output would be very helpful to find out...
It seems this is related to #692 - I guess there is a new type of value (tax) for mintos.
Seems that the `discoverMainTours` function uses a try/catch to avoid these errors, while the `discoverSubTours` function does not do that: https://github.com/microsoft/codetour/blob/9f29dd9021d9d47246a7acff37bb82e28bd58b8d/src/store/provider.ts#L88-L94 https://github.com/microsoft/codetour/blob/9f29dd9021d9d47246a7acff37bb82e28bd58b8d/src/store/provider.ts#L141-L144
Thanks for the issue! Just adding a bit more detail as I am "fresh" to GitHub workflows and might know the least about it :) According to the official electron...