Skip to content

Commit

Permalink
Updated source text
Browse files Browse the repository at this point in the history
  • Loading branch information
MaticConradi committed Jun 11, 2022
1 parent 0a81318 commit e82a913
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/iexc.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def _request_stocks(cls, request, ticker):
"change": "{:+.2f} %".format(priceChange),
"thumbnailUrl": coinThumbnail,
"messageColor": "amber" if priceChange == 0 else ("green" if priceChange > 0 else "red"),
"sourceText": "Data provided by IEX Cloud",
"sourceText": f"Price on {exchange.get('name')}",
"platform": "IEXC",
"raw": {
"quotePrice": [price],
Expand Down
2 changes: 1 addition & 1 deletion build/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /usr/src/quote-server
COPY ./build/requirements.txt ./
RUN pip install -r ./requirements.txt

RUN git clone https://github.com/alphabotsystem/dependencies.git && cd ./dependencies && git checkout v1.4.5
RUN git clone https://github.com/alphabotsystem/dependencies.git && cd ./dependencies && git checkout v1.4.6
RUN pip install ./dependencies/py/parser
RUN rm -r ./dependencies

Expand Down

0 comments on commit e82a913

Please sign in to comment.