pistreaming icon indicating copy to clipboard operation
pistreaming copied to clipboard

Syntax Error

Open gnensis opened this issue 7 years ago • 0 comments

This two bug was found on Python3.2 for RaspberryPi.

  1. COLOR = u'#444' ^ SyntaxError: invalid syntax Fix: remove the "u" before '#444'

  2. File "server.py", line 123, in run buf = self.converter.stdout.read1(32768) AttributeError: '_io.FileIO' object has no attribute 'read1' Fix: use "stdout.read()" instead of "stdout.read1()"

gnensis avatar Oct 29 '18 06:10 gnensis