It's completely my mistake, but a memo.
$ byobu --version
byobu version 5.16
tmux 1.6
$ byobu
File "/usr/bin/byobu-select-session", line 43
if output[0] >= 0:
^
TabError: inconsistent use of tabs and spaces in indentation
Ah, I thought that byobu was stable, but I got the point early, but since I'm using Python, I noticed that it was an error that I could fix.
However, it seems strange to tamper with the file directly, so if you google it, it will be as follows.
https://bugs.launchpad.net/byobu/+bug/1043048
With python3 as default python interpreter, on start of byobu byobu-select-session throws an exception due to python3's new tab/space inconsistency intolerance:
Ah, Debian wheezy's default Python shouldn't be 3?
$ python --version
Python 3.4.0
$ head -n 1 /usr/bin/byobu-select-session
#!/usr/bin/env python
$ pyenv versions
pyenv versions
system
2.7.6
* 3.4.0 (set by /home/dmiyakawa/.python-version)
Excuse me orz
Recommended Posts