summaryrefslogtreecommitdiffstats
path: root/py3status/modules
diff options
context:
space:
mode:
Diffstat (limited to 'py3status/modules')
-rwxr-xr-xpy3status/modules/aws_bill.py6
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