Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/javatoolkit:master commit in: src/py/javatoolkit/
Date: Mon, 07 Aug 2017 23:48:36
Message-Id: 1502149012.148f42293eb0e6c33b39ad2bd11b367362c929fe.monsieurp@gentoo
1 commit: 148f42293eb0e6c33b39ad2bd11b367362c929fe
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 7 23:36:52 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 7 23:36:52 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=148f4229
7
8 fix imports
9
10 src/py/javatoolkit/__init__.py | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/src/py/javatoolkit/__init__.py b/src/py/javatoolkit/__init__.py
14 index 77b273b..f40ce2e 100644
15 --- a/src/py/javatoolkit/__init__.py
16 +++ b/src/py/javatoolkit/__init__.py
17 @@ -5,8 +5,8 @@
18 #
19 # Licensed under the GNU General Public License, v2
20
21 -from classpath import *
22 -from output import *
23 +from .classpath import *
24 +from .output import *
25
26 if __name__ == "__main__":
27 print("This is not an executable module")