From 1bc6b679c76aa8b97be90f8f53de58a97c3c78b9 Mon Sep 17 00:00:00 2001 From: Gerben Welter Date: Sat, 15 May 2021 22:22:22 +0200 Subject: [PATCH] Fix the background image loading exception --- terminatorlib/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index c211c2a1..74523d35 100644 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -148,7 +148,7 @@ class Terminal(Gtk.VBox): except Exception as e: self.background_image = None self.vte.set_clear_background(True) - err('error loading background image: %s, %s' % (type(ex).__name__,e)) + err('error loading background image: %s, %s' % (type(e).__name__,e)) self.background_alpha = self.config['background_darkness'] self.vte.set_allow_hyperlink(True)