aboutsummaryrefslogtreecommitdiff
path: root/graphics/threeDS/files/patch-threeDS.py
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/threeDS/files/patch-threeDS.py')
-rw-r--r--graphics/threeDS/files/patch-threeDS.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/graphics/threeDS/files/patch-threeDS.py b/graphics/threeDS/files/patch-threeDS.py
new file mode 100644
index 000000000000..a593642562c2
--- /dev/null
+++ b/graphics/threeDS/files/patch-threeDS.py
@@ -0,0 +1,24 @@
+
+$FreeBSD$
+
+--- threeDS.py 2001/01/18 19:26:14 1.1
++++ threeDS.py 2001/01/18 19:26:19
+@@ -82,7 +82,7 @@
+ self.imgfile = readStr(f)
+ # print "texture: " + self.imgfile
+ try:
+- from Imaging import Image
++ from PIL import Image
+ except:
+ print 'Can\'t load texture without PIL!!'
+ continue
+@@ -370,7 +370,8 @@
+
+ def __init__(self, filename):
+ (path, filename) = os.path.split(filename)
+- os.chdir(path)
++ if path != '':
++ os.chdir(path)
+ f = open(filename, "rb")
+ if f is None:
+ print "error loading " + str(filename) + "."