commit | 5f087cf1999f03869cb5ada12172ff987c6ad5a2 | [log] [tgz] |
---|---|---|
author | Joe Gregorio <jcgregorio@google.com> | Mon Sep 20 16:08:07 2010 -0400 |
committer | Joe Gregorio <jcgregorio@google.com> | Mon Sep 20 16:08:07 2010 -0400 |
tree | 6df8a935c95acd45b921a978db5b6a2b617ddd65 | |
parent | e6efd5359b207196929a7b3c89f7905601de813c [diff] [blame] |
Changed to a command pattern for requests.
diff --git a/samples/cmdline/moderator.py b/samples/cmdline/moderator.py index 3bca162..36f354a 100644 --- a/samples/cmdline/moderator.py +++ b/samples/cmdline/moderator.py
@@ -27,7 +27,7 @@ http = credentials.authorize(http) p = build("moderator", "v1", http=http) - print p.submissions().list(seriesId="7035", topicId="64") + print p.submissions().list(seriesId="7035", topicId="64").execute() if __name__ == '__main__': main()