diff options
author | jblum | 2008-08-29 21:42:16 +0000 |
---|---|---|
committer | jblum | 2008-08-29 21:42:16 +0000 |
commit | d81b8e3ee33c117c7107bd747e907d7f22c29583 (patch) | |
tree | 4038c49d0fbde2cc6dd5e6a3463f260adec50d0c /grc/src/grc_gnuradio | |
parent | f1b6dd89d43ddf896e5b6dd0df0e43f0e35308f1 (diff) | |
download | gnuradio-d81b8e3ee33c117c7107bd747e907d7f22c29583.tar.gz gnuradio-d81b8e3ee33c117c7107bd747e907d7f22c29583.tar.bz2 gnuradio-d81b8e3ee33c117c7107bd747e907d7f22c29583.zip |
removed eval kludge
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9451 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'grc/src/grc_gnuradio')
-rw-r--r-- | grc/src/grc_gnuradio/Param.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/src/grc_gnuradio/Param.py b/grc/src/grc_gnuradio/Param.py index b6d5250df..1f5b967a6 100644 --- a/grc/src/grc_gnuradio/Param.py +++ b/grc/src/grc_gnuradio/Param.py @@ -226,9 +226,9 @@ class Param(_Param): @return a string representing the code """ #run init tasks in evaluate + #such as setting flags if not self._init: - try: self.evaluate() - except: pass + self.evaluate() self._init = True v = self.get_value() t = self.get_type() |