blob: ccc3ed9b44eb5f3bd3cd14ea74bf03f13480cf99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Index: rednotebook-0.9.3/rednotebook/gui/browser.py
===================================================================
--- rednotebook-0.9.3.orig/rednotebook/gui/browser.py
+++ rednotebook-0.9.3/rednotebook/gui/browser.py
@@ -36,11 +36,7 @@ if __name__ == '__main__':
gobject.threads_init() # also initializes the gdk threads
-try:
- import webkit
-except ImportError:
- logging.info('webkit not found. For a nicer preview install python-webkit or pywebkitgtk')
- webkit = None
+webkit = None
from rednotebook.util import filesystem
|