TW

Results 2664 comments of TW

You could try to `borg init` a new test repo, then edit the repo config and use a very small segment file size (default: 500MB, try 1kB or so). Guess...

I do not currently work on that, but feel free if you want to try this.

The **file-internal consistency problem** was always there, borg < 1.2 just did not check for it (and thus, did not warn you about it). borg 1.2.x does **not** exit with...

https://pypi.org/project/pyupgrade/ ``` # zsh pyupgrade --py38-plus ./**/*.py ```

``` File "os.py", line 812, in fsencode UnicodeEncodeError: 'ascii' codec can't encode character '\u2026' in position 81: ordinal not in range(128) ``` Notable: - that is `os.fsencode`, a python standard...

Is the locale you set actually available on your system? Try: ``` dpkg-reconfigure -plow locales # select all locales you need and at least one UTF-8 locale you intend to...

No, guess these are fine. Just make sure that: - there is no typo or so in `LANG=` - that setting is also active (and `export`ed) in the borg environment...

https://docs.python.org/3/library/os.html#python-utf-8-mode There are some further things to try that likely solve your problem - although it would be interesting why it does not work as you have it now. Maybe...

What's the LC_CTYPE in the borg env?

Can you try this: ``` $ python3 >>> import sys >>> sys.getfilesystemencoding() 'utf-8' ```