summarylogtreecommitdiffstats
path: root/wspr.py.patch
diff options
context:
space:
mode:
authorCarsten Feuls2016-03-15 14:14:25 +0100
committerCarsten Feuls2016-03-15 14:14:25 +0100
commitbc19008776f1e0b932587b2536ee6a9affd0928a (patch)
tree3e83ff42411dd1be11a7d6cdf70f5e90aabd3b74 /wspr.py.patch
parenta58b1dddb96a88b716c8f07c212c6b666d1a851c (diff)
downloadaur-bc19008776f1e0b932587b2536ee6a9affd0928a.tar.gz
wspy.py.patch added
Diffstat (limited to 'wspr.py.patch')
-rw-r--r--wspr.py.patch28
1 files changed, 17 insertions, 11 deletions
diff --git a/wspr.py.patch b/wspr.py.patch
index 3f8755372409..ee8a05f9c33b 100644
--- a/wspr.py.patch
+++ b/wspr.py.patch
@@ -1,11 +1,17 @@
---- wspr.py.orig 2015-01-22 19:32:59.000000000 +0100
-+++ wspr.py 2015-01-22 19:43:27.133581716 +0100
-@@ -35,7 +35,7 @@
- from Numeric import zeros
- import array
- import dircache
--import Image, ImageTk, ImageDraw
-+from PIL import Image, ImageTk, ImageDraw
- from WsprMod.palettes import colormapblue, colormapgray0, colormapHot, \
- colormapAFMHot, colormapgray1, colormapLinrad, Colormap2Palette
- from types import * \ No newline at end of file
++++ wspr.py 2016-03-15 14:10:21.385193623 +0100
+--- wspr.py.orig 2016-03-15 14:09:59.529132801 +0100
+@@ -30,12 +30,12 @@
+ from WsprMod import palettes
+ from math import log10
+ try:
+- from numpy.oldnumeric import zeros
++ from numpy import zeros
+ except:
+ from Numeric import zeros
+ import array
+ import dircache
+-import Image, ImageTk, ImageDraw
++from PIL import Image, ImageTk, ImageDraw
+ from WsprMod.palettes import colormapblue, colormapgray0, colormapHot, \
+ colormapAFMHot, colormapgray1, colormapLinrad, Colormap2Palette
+ from types import *