We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c291434 commit e2a0868Copy full SHA for e2a0868
2 files changed
plugins/amazon.py
@@ -33,7 +33,7 @@ def amazon(text):
33
asin = item['data-asin']
34
35
# here we use dirty html scraping to get everything we need
36
- title = formatting.truncate(item.find('h2', {'class': 's-access-title'}).text, 50)
+ title = formatting.truncate(item.find('h2', {'class': 's-access-title'}).text, 60)
37
tags = []
38
39
# tags!
plugins/newegg.py
@@ -20,7 +20,7 @@
20
21
def format_item(item, show_url=True):
22
""" takes a newegg API item object and returns a description """
23
- title = formatting.truncate(item["Title"], 50)
+ title = formatting.truncate(item["Title"], 60)
24
25
# format the rating nicely if it exists
26
if not item["ReviewSummary"]["TotalReviews"] == "[]":
0 commit comments