google / gdata-python-client

444 stars 228 forks source link

Sites example uri invalid syntax #60

Closed TimothyLe closed 4 years ago

TimothyLe commented 7 years ago

In sites_example.py, there is a syntax issue with the uri at line 297.

λ py sites_example.py
  File "sites_example.py", line 297
    uri = ('%s?kind=%s' % (self.client.make_content_feed_uri(),
      ^
SyntaxError: invalid syntax

My terminal is interpreting this line as invalid syntax and I've tried wrapping it with parentheses but it still didn't work. I am not trying to be too invasive on this line but I need help this syntax error.

TimothyLe commented 4 years ago

Appended following line separated by comma to the same line: uri = '%s?kind=%s' % (self.client.make_content_feed_uri(), kind_choice)