CloudFail icon indicating copy to clipboard operation
CloudFail copied to clipboard

Fix syntax error

Open AlvinChiou opened this issue 6 years ago • 1 comments

Hi, I found it's caused syntax error in line 23, I fixed it.

AlvinChiou avatar Aug 02 '17 08:08 AlvinChiou

Hi thanks for your pull!

Just curious as to why you choose to do end == end as this is always going to show true as end does equal end...

It is valid syntax in Python3 to use end='' in a print function.

Old: print x, # Trailing comma suppresses newline New: print(x, end=" ") # Appends a space instead of a newline

https://docs.python.org/3/whatsnew/3.0.html

m0rtem avatar Aug 02 '17 08:08 m0rtem