summaryrefslogtreecommitdiff
path: root/tftpy/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tftpy/__init__.py')
-rw-r--r--tftpy/__init__.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/tftpy/__init__.py b/tftpy/__init__.py
index b1400df..9a13121 100644
--- a/tftpy/__init__.py
+++ b/tftpy/__init__.py
@@ -10,13 +10,13 @@ directly. The TftpClient and TftpServer classes can be reached through it.
import sys
-# Make sure that this is at least Python 2.3
+# Make sure that this is at least Python 3.1
verlist = sys.version_info
-if not verlist[0] >= 2 or not verlist[1] >= 3:
- raise AssertionError, "Requires at least Python 2.3"
+if not verlist[0] >= 3 or not verlist[1] >= 1:
+ raise AssertionError("Requires at least Python 3.1")
-from TftpShared import *
-from TftpPacketTypes import *
-from TftpPacketFactory import *
-from TftpClient import *
-from TftpServer import *
+from .TftpShared import *
+from .TftpPacketTypes import *
+from .TftpPacketFactory import *
+from .TftpClient import *
+from .TftpServer import *