Index: stamper/stamper.py
===================================================================
--- stamper/stamper.py	(revision 38)
+++ stamper/stamper.py	(revision 39)
@@ -222,5 +222,5 @@
                 worktime = self.worktime(stamp['start'], stamp['end'])
                 details[start_day].append(
-                    ' -> %(worktime)s %(customer)s %(action)s' % {
+                    '%(worktime)s %(customer)s %(action)s' % {
                         'worktime': str(timedelta(seconds=worktime)),
                         'customer': customer,
@@ -318,5 +318,13 @@
                 for line in details[day]:
                     print(line)
-                print(' Total: %(total)s' % {'total': totals[day]})
+                customer_day_totals = []
+                for tc in total_customer[day]:
+                    tc_total = str(timedelta(seconds=total_customer[day][tc]))
+                    customer_day_totals.append(tc+': '+tc_total)
+                print(', '.join(customer_day_totals))
+                if len(customer_day_totals) > 1:
+                    # if there are multiple customers in the report, show the
+                    # daily totals
+                    print('daily total: %(total)s' % {'total': totals[day]})
             print '-'*79
 
