mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-07 00:58:14 +00:00
add dealer name to title in brackets (#22)
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
version = '0.1.9'
|
version = '0.2.0'
|
||||||
|
@@ -117,6 +117,7 @@ def parse_threads(api_response, limit):
|
|||||||
threads.append(
|
threads.append(
|
||||||
{
|
{
|
||||||
"title": topic.get("title"),
|
"title": topic.get("title"),
|
||||||
|
"dealer_name": topic["offer"].get("dealer_name"),
|
||||||
"score": calculate_score(topic),
|
"score": calculate_score(topic),
|
||||||
"url": build_web_path(topic.get("web_path")),
|
"url": build_web_path(topic.get("web_path")),
|
||||||
}
|
}
|
||||||
|
@@ -133,7 +133,7 @@ def threads(limit, forum_id):
|
|||||||
+ "."
|
+ "."
|
||||||
+ get_vote_color(thread.get("score"))
|
+ get_vote_color(thread.get("score"))
|
||||||
+ Fore.RESET
|
+ Fore.RESET
|
||||||
+ thread.get("title")
|
+ "[%s] %s" % (thread.get("dealer_name"), thread.get("title"))
|
||||||
)
|
)
|
||||||
click.echo(Fore.BLUE + " {}".format(thread.get("url")))
|
click.echo(Fore.BLUE + " {}".format(thread.get("url")))
|
||||||
click.echo(Style.RESET_ALL)
|
click.echo(Style.RESET_ALL)
|
||||||
|
Reference in New Issue
Block a user