File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -303,4 +303,7 @@ Contact us @ https://cryptapi.io/contacts/
303303* Added UI for payments
304304* Added store application to provide examples on how to implement
305305* General improvements
306- * Fixed bugs
306+ * Fixed bugs
307+
308+ # ### 0.4.1
309+ * Minor bugfixes
Original file line number Diff line number Diff line change 11from distutils .version import StrictVersion
22
3- VERSION = StrictVersion ('0.4' )
3+ VERSION = StrictVersion ('0.4.1 ' )
Original file line number Diff line number Diff line change @@ -52,12 +52,15 @@ def get_coins():
5252def get_choices_coins ():
5353 coins = ''
5454
55- for ticker , coin in get_coins ().items ():
56- y = list (coins )
57- y .append ((ticker , coin ))
58- coins = tuple (y )
55+ try :
56+ for ticker , coin in get_coins ().items ():
57+ y = list (coins )
58+ y .append ((ticker , coin ))
59+ coins = tuple (y )
5960
60- return coins
61+ return coins
62+ except :
63+ return ()
6164
6265
6366def build_query_string (data ):
You can’t perform that action at this time.
0 commit comments