all repos — openbox @ c6997ba19ee5fdbaca49c55c8802f6b75a74c65f

openbox fork - make it a bit more like ryudo

Print error message to stderr (Fix bug 5731)

As stdout is redirected to /dev/null by some DMs, we need to print error
messages to stderr.
Xin Wang dram.wang@gmail.com
commit

c6997ba19ee5fdbaca49c55c8802f6b75a74c65f

parent

65693d18dbf9d434f8c6cd5025bf3bdfbe4d8a5c

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M data/autostart/openbox-xdg-autostartdata/autostart/openbox-xdg-autostart

@@ -29,7 +29,7 @@ from xdg.DesktopEntry import DesktopEntry

from xdg.Exceptions import ParsingError except ImportError: print - print "ERROR:", ME, "requires PyXDG to be installed" + print >>sys.stderr, "ERROR:", ME, "requires PyXDG to be installed" print sys.exit(1)