From 46d9407822a8aa110084c8a925c90f2711aeb67c Mon Sep 17 00:00:00 2001 From: Camilo Sarmiento Date: Sun, 22 Mar 2020 18:00:01 -0500 Subject: [PATCH] minor fix --- README.md | 29 ----------------------------- sale.py | 2 +- 2 files changed, 1 insertion(+), 30 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 39af52c..0000000 --- a/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# README # - -This README would normally document whatever steps are necessary to get your application up and running. - -### What is this repository for? ### - -* Quick summary -* Version -* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo) - -### How do I get set up? ### - -* Summary of set up -* Configuration -* Dependencies -* Database configuration -* How to run tests -* Deployment instructions - -### Contribution guidelines ### - -* Writing tests -* Code review -* Other guidelines - -### Who do I talk to? ### - -* Repo owner or admin -* Other community or team contact \ No newline at end of file diff --git a/sale.py b/sale.py index 175c192..0120e1a 100644 --- a/sale.py +++ b/sale.py @@ -280,6 +280,6 @@ class SaleIncomeDailyReport(metaclass=PoolMeta): elif isinstance(result[k], list): report_context[k].extend(result[k]) if k == 'shop': - report_context[k] += result[k] + ', ' + report_context[k] += result[k] + ' ' return report_context