aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf12
1 files changed, 8 insertions, 4 deletions
diff --git a/fetchmailconf b/fetchmailconf
index b22a91d7..ac41880d 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -1373,10 +1373,14 @@ if __name__ == '__main__':
# OK, now run the configuration edit
root = MainWindow(rcfile)
- icon_image = PhotoImage(data=fetchmail_gif)
- icon_window = Toplevel()
- Label(icon_window, image=icon_image, bg='black').pack()
- root.master.iconwindow(icon_window)
+ try:
+ # Some older pythons will error out on this
+ icon_image = PhotoImage(data=fetchmail_gif)
+ icon_window = Toplevel()
+ Label(icon_window, image=icon_image, bg='black').pack()
+ root.master.iconwindow(icon_window)
+ except:
+ pass
root.mainloop()
# The following sets edit modes for GNU EMACS