Skip to content

Commit

Permalink
Fix print() in main() for py3
Browse files Browse the repository at this point in the history
  • Loading branch information
kk7ds committed Nov 17, 2015
1 parent 58629f4 commit af8842e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uvcclient/uvcclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def main():
print('%s: %-24.24s [%10s]' % (cam['uuid'], cam['name'], status))
elif opts.recordmode:
if not opts.uuid:
print 'Name or UUID is required'
print('Name or UUID is required')
return 1

r = client.set_recordmode(opts.uuid, opts.recordmode,
Expand Down

0 comments on commit af8842e

Please sign in to comment.