From 7ea1e18f20399fa630e25e108f9ea2407d544c6e Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 1 Oct 2009 22:15:50 +0100 Subject: [PATCH] Tiny cleanup --- terminatorlib/terminal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index 1053b917..685e36b4 100755 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -87,8 +87,8 @@ class Terminal(gtk.VBox): self.vte = vte.Terminal() self.vte.set_size(80, 24) self.vte._expose_data = None - if not hasattr(self.vte, "set_opacity") or not hasattr(self.vte, - "is_composited"): + if not hasattr(self.vte, "set_opacity") or \ + not hasattr(self.vte, "is_composited"): self.composite_support = False self.vte.show()