diff options
author | Eric Blossom | 2010-09-14 12:43:45 -0700 |
---|---|---|
committer | Eric Blossom | 2010-09-14 12:43:45 -0700 |
commit | c81312cee781a6912eb87f430096f3757e056b28 (patch) | |
tree | f9f9767c1e44b88f39ecb3e2bf4a4eae8fbe816c /gr-wxgui/src/python | |
parent | c986a2add25920eabacfd620a1a2132cd7e4981d (diff) | |
parent | a0c01f9f9ca5743189ce5c84ee3f2b1cea819335 (diff) | |
download | gnuradio-c81312cee781a6912eb87f430096f3757e056b28.tar.gz gnuradio-c81312cee781a6912eb87f430096f3757e056b28.tar.bz2 gnuradio-c81312cee781a6912eb87f430096f3757e056b28.zip |
Merge branch 'maint'
* maint:
Avoid divide by zero in persistence code when using default args
Update config.guess and config.sub in gr-howoto-write-a-block too
Update config.guess and config.sub from canonical home
Update script to pull config.* from git repo
Diffstat (limited to 'gr-wxgui/src/python')
-rw-r--r-- | gr-wxgui/src/python/fftsink_gl.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-wxgui/src/python/fftsink_gl.py b/gr-wxgui/src/python/fftsink_gl.py index e0306d919..6cfaeff60 100644 --- a/gr-wxgui/src/python/fftsink_gl.py +++ b/gr-wxgui/src/python/fftsink_gl.py @@ -19,6 +19,8 @@ # Boston, MA 02110-1301, USA. # +from __future__ import division + ################################################## # Imports ################################################## |