Nico Kist

Results 7 comments of Nico Kist

I encountered the same problem and it was because there was a `.fa` in my output name. You can see it's being replaced by `.bed` in your logs, e.g. `'Y1_[candida]ascalaphidarum_1.bed/`

Does this [possible fix](https://github.com/nicokist/sublack/tree/fix_click_locale) work for you?

I'm afraid not. Somehow on our systems the locale is None: >>> import locale >>> locale.getdefaultlocale() (None, None) Perhaps you could check for that and set LC_ALL only `if locale.getdefaultlocale()...

I've checked, the following works for me: ``` if locale.getdefaultlocale() == (None, None): env["LC_ALL"] = "en_US.UTF-8" ```

I'm on 10.13.4 If I use a non-english language I actually hit a crash earlier: ``` Traceback (most recent call last): File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 1072, in run_ return self.run(edit)...

Your latest commit works for me. I think the undefined encoding was due to me trying switching languages while testing using the same file, it didn't recur when I created...

``` if locale.getdefaultlocale() == (None, None): env["LC_CTYPE"] = "UTF-8" ``` Still works.