From 97efaf2244f7f4c25ac45cbed1f8f79452dc2dfc Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Thu, 4 Nov 2010 13:14:12 -0500 Subject: [PATCH] fix python syntax bug --- usr/bin/byobu-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/bin/byobu-config b/usr/bin/byobu-config index c3fb27ec..41b8aab7 100755 --- a/usr/bin/byobu-config +++ b/usr/bin/byobu-config @@ -517,7 +517,7 @@ def chgesc(screen, size): return 100 def autolaunch(): - if os.path.exists(DATA+"/disable-autolaunch") + if os.path.exists(DATA+"/disable-autolaunch"): return 0 if commands.getstatusoutput('grep -qs byobu-launcher %s/.profile' % HOME)[0] == 0: return 1