Browse Source

Add a newline and a comment on the minimum reserve

Eren Yilmaz 5 years ago
parent
commit
c2df7044ca
1 changed files with 3 additions and 1 deletions
  1. 3 1
      client_controller.py

+ 3 - 1
client_controller.py

@@ -179,7 +179,9 @@ def depot():
         if response['banking_license']:
             print(f'Also, you have a banking license.')
             minimum_reserve = response['minimum_reserve']
-            print(f'You are legally obligated to deposit a minimum cash reserve of {minimum_reserve} at the central bank as a security for your credits.')
+            print(f'You are legally obligated to deposit a minimum cash reserve of {minimum_reserve}{CURRENCY_SYMBOL} '
+                  f'at the central bank as a security for your credits.')
+            print('This minimum reserve has already been subtracted from the displayed amount.')
     else:
         if 'error' in response:
             print('Depot access failed with message:', response['error'])