Mercurial > hgweb > health
changeset 4864:96858aa3c1f3
task #16043: Migration to GNU Health 4.0: Migrate health_profile
| author | Luis Falcon <falcon@gnuhealth.org> |
|---|---|
| date | Sat, 15 Jan 2022 07:16:08 +0000 |
| parents | 3a5171e5694f |
| children | f825cbfb21b5 |
| files | tryton/health_profile/__init__.py tryton/health_profile/setup.py tryton/health_profile/tryton.cfg |
| diffstat | 3 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/tryton/health_profile/__init__.py +++ b/tryton/health_profile/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- ############################################################################## # # GNU Health: The Free Health and Hospital Information System
--- a/tryton/health_profile/setup.py +++ b/tryton/health_profile/setup.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright (C) 2011-2022 Luis Falcon <falcon@gnuhealth.org> # Copyright (C) 2011 Cédric Krier @@ -22,7 +21,9 @@ import configparser def read(fname): - return open(os.path.join(os.path.dirname(__file__), fname), encoding="UTF-8").read() + return open( + os.path.join(os.path.dirname( + file__), fname), encoding="UTF-8").read() config = configparser.ConfigParser() config.readfp(open('tryton.cfg'))
