diff options
| author | Anthony Brodard <anthony.brodard@fullsix.com> | 2015-04-29 17:19:37 +0200 |
|---|---|---|
| committer | Anthony Brodard <anthony.brodard@fullsix.com> | 2015-04-29 17:19:37 +0200 |
| commit | e3d7c80941dd5a9e0a4e7d51d9cbdb36933c7bcc (patch) | |
| tree | 603daf07aa8ba1d7594773d1c78681923703908e /py3status/modules | |
| parent | 30cc4aef4729a65ca9b72669572cca30672cdf41 (diff) | |
Typo fix
Diffstat (limited to 'py3status/modules')
| -rwxr-xr-x | py3status/modules/aws_bill.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py3status/modules/aws_bill.py b/py3status/modules/aws_bill.py index 6d5c036..ebe762f 100755 --- a/py3status/modules/aws_bill.py +++ b/py3status/modules/aws_bill.py @@ -89,7 +89,7 @@ class Py3status: bill_amount = self._get_bill_amount() if bill_amount == 'csv_error': - response['full_text'] = 'Check your csv file' + response['full_text'] = 'Bad CSV file' elif bill_amount == 'key_error': response['full_text'] = 'Key not found in the bucket' elif bill_amount == 'bucket_error': @@ -97,10 +97,10 @@ class Py3status: elif bill_amount == 'conn_error': response['full_text'] = 'Check your internet access' elif bill_amount is not False: - response['full_text'] = str(bill_amount) + "$" + response['full_text'] = str(bill_amount) + '$' response['color'] = i3s_config['color_good'] else: - response['full_text'] = "Billing file not found in the bucket" + response['full_text'] = 'Global error - WTF exception' return response |
