Skip to content

Commit

Permalink
Fixed print call (Thanks sk8forether)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottransom committed Nov 12, 2019
1 parent 1423a24 commit 15923cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/presto/sigproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def read_intval(filfile, stdout=False):
def read_charval(filfile, stdout=False):
charval = struct.unpack('b', filfile.read(1))[0]
if stdout:
print " char value = '%d'"%charval
print(" char value = '%d'"%charval)
return charval

def read_longintval(filfile, stdout=False):
Expand Down

0 comments on commit 15923cb

Please sign in to comment.