Skip to content

Commit a518e1c

Browse files
author
Paul Tagliamonte
committed
Fixing the examples + adding the v-bump to the ChangeLog
1 parent a9e27d2 commit a518e1c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* sunlight/services/capitolwords.py: Fixed a URL Encoding issue that was
44
sitting there, undiscovered. Thanks, dandrinkard!
5+
* Bump release to 1.1.2
56

67
2012-02-27 James Turk <[email protected]>
78

examples/capitolwords/gingrich_words

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ from sunlight import capitolwords
55

66
newt = "G000225"
77

8-
favorate_phrases = capitolwords.phrases( "legislator", "G000225", sort="count+desc")
8+
favorate_phrases = capitolwords.phrases( "legislator", "G000225", sort="count desc")
99
for phrase in favorate_phrases:
1010
print( "%s: %s" % ( phrase['ngram'], phrase['count'] ))
1111

examples/capitolwords/july_2010_phrases

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
from __future__ import print_function
44
from sunlight import capitolwords
55

6-
for phrase in capitolwords.phrases( "month", "201007", sort="count+desc" ):
6+
for phrase in capitolwords.phrases( "month", "201007", sort="count desc" ):
77
print( "%s was used %s times" % ( phrase['ngram'], phrase['count'] ))

0 commit comments

Comments
 (0)