diff options
author | Roy Thompson <rthompso@gmail.com> | 2013-07-03 16:00:05 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-07-03 16:01:29 -0700 |
commit | 5d650669a38d659724b001a6124cb8d775eaaf05 (patch) | |
tree | fd7e4bf64d3b0d3eb5ec208d9756c8dfd9fd8cb7 /gr-utils/python | |
parent | 15681149e1c82e662bed75078b2577b8a57a7ee2 (diff) |
grc: fix to allow grcc to execute in headless mode
Diffstat (limited to 'gr-utils/python')
-rwxr-xr-x | gr-utils/python/utils/grcc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gr-utils/python/utils/grcc b/gr-utils/python/utils/grcc index 0477b813f6..dbcc89dc0e 100755 --- a/gr-utils/python/utils/grcc +++ b/gr-utils/python/utils/grcc @@ -20,6 +20,9 @@ # Boston, MA 02110-1301, USA. # +import warnings +warnings.simplefilter('ignore') + try: from grc.python.Platform import Platform except ImportError: |