From: Eric Blossom Date: Mon, 13 Sep 2010 02:10:56 +0000 (-0700) Subject: Avoid divide by zero in persistence code when using default args X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=a0c01f9f9ca5743189ce5c84ee3f2b1cea819335;p=debian%2Fgnuradio Avoid divide by zero in persistence code when using default args --- diff --git a/gr-wxgui/src/python/fftsink_gl.py b/gr-wxgui/src/python/fftsink_gl.py index e0306d91..6cfaeff6 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 ##################################################