1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-08 05:20:03 +03:00

td.py: Update Price-Data format URL to github

This commit is contained in:
Athanasius 2022-12-08 11:44:30 +00:00
parent 78e9db710f
commit 088da2e5f0
No known key found for this signature in database
GPG Key ID: 772697E181BB2767

2
td.py
View File

@ -30,7 +30,7 @@ def export(data: CAPIData) -> None:
# codecs can't automatically handle line endings, so encode manually where
# required
with open(data_path / data_filename, 'wb') as h:
# Format described here: https://bitbucket.org/kfsone/tradedangerous/wiki/Price%20Data
# Format described here: https://github.com/eyeonus/Trade-Dangerous/wiki/Price-Data
h.write('#! trade.py import -\n'.encode('utf-8'))
this_platform = sys.platform == 'darwin' and "Mac OS" or system()
cmdr_name = data['commander']['name'].strip()