Skip to content

Commit

Permalink
Fixing import command and GRC examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ta6o committed Jan 21, 2020
1 parent 9d6ed6d commit a8eabf4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/am_flow_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
x11 = ctypes.cdll.LoadLibrary('libX11.so')
x11.XInitThreads()
except:
print "Warning: failed to XInitThreads()"
print("Warning: failed to XInitThreads()")

from PyQt4 import Qt
from gnuradio import analog
Expand Down
2 changes: 1 addition & 1 deletion apps/nbfm_flow_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
x11 = ctypes.cdll.LoadLibrary('libX11.so')
x11.XInitThreads()
except:
print "Warning: failed to XInitThreads()"
print("Warning: failed to XInitThreads()")

from PyQt4 import Qt
from gnuradio import analog
Expand Down
5 changes: 4 additions & 1 deletion apps/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
@author: madengr
"""
import builtins
try:
import builtins
except:
import __builtin__
import receiver as recvr
import estimate
import parser as prsr
Expand Down

0 comments on commit a8eabf4

Please sign in to comment.