diff options
Diffstat (limited to 'plugins/externaltools/tools/functions.py')
-rwxr-xr-x | plugins/externaltools/tools/functions.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/externaltools/tools/functions.py b/plugins/externaltools/tools/functions.py index dd4f82b2..e76689bd 100755 --- a/plugins/externaltools/tools/functions.py +++ b/plugins/externaltools/tools/functions.py @@ -18,8 +18,8 @@ import os from gi.repository import Gio, Gdk, Gtk, GtkSource, Pluma -from outputpanel import OutputPanel -from capture import * +from .outputpanel import OutputPanel +from .capture import * def default(val, d): if val is not None: @@ -131,8 +131,6 @@ def run_external_tool(window, panel, node): elif input_type == 'selection' or input_type == 'selection-document': try: start, end = document.get_selection_bounds() - - print start, end except ValueError: if input_type == 'selection-document': start, end = document.get_bounds() |