diff --git a/robot.py b/robot.py index 3cae37d..52047d6 100644 --- a/robot.py +++ b/robot.py @@ -47,7 +47,7 @@ f.close() if args.symbol is not None: show_symbols = [args.symbol] if args.symbol not in symbols: - symbols[args.symbol] = {'name' : 'Full name here', 'currency' : '$'} + symbols[args.symbol] = {'name' : 'Full name here', 'currency' : 'USD'} s = json.dumps(symbols, sort_keys=True, indent=4) f = open('stocks.json', 'w') f.write(s)