[gedit-plugins/wip/python3] Fix local imports
- From: Jesse van den Kieboom <jessevdk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit-plugins/wip/python3] Fix local imports
- Date: Fri, 9 Nov 2012 11:18:17 +0000 (UTC)
commit b56191717d4cd5c3fd4649a970f69c4323a093ca
Author: Jesse van den Kieboom <jessevdk gnome org>
Date: Fri Nov 9 10:18:09 2012 +0100
Fix local imports
plugins/commander/modules/find/__init__.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/plugins/commander/modules/find/__init__.py b/plugins/commander/modules/find/__init__.py
index 7c9ca8e..d081283 100644
--- a/plugins/commander/modules/find/__init__.py
+++ b/plugins/commander/modules/find/__init__.py
@@ -22,9 +22,9 @@
import commander.commands as commands
from gi.repository import Gedit
import re
-import regex
+from . import regex
from xml.sax import saxutils
-import finder
+from . import finder
__commander_module__ = True
__root__ = ['/', 'find_i', '//', 'r/', 'r//']
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]