diff options
| author | Juergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com> | 2017-01-30 10:54:46 +0100 |
|---|---|---|
| committer | Juergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com> | 2017-01-30 10:54:46 +0100 |
| commit | dae03de21ca4c86552718015b4572714817ff59f (patch) | |
| tree | e2fb0c2934e947c9acdbfc36005d35d38b730956 /tests/test_climate.py | |
| parent | cae6c38ddb7a21ea0b93caa675caa14a5e943479 (diff) | |
Ensured we always use the path module and not the pathlib module from Python3. Also when pathlib is now a standard module, the path module has more convenience operations.
Diffstat (limited to 'tests/test_climate.py')
| -rw-r--r-- | tests/test_climate.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_climate.py b/tests/test_climate.py index b7adec6..1a2135a 100644 --- a/tests/test_climate.py +++ b/tests/test_climate.py @@ -1,7 +1,7 @@ from qface.generator import FileSystem import logging import logging.config -from pathlib import Path +from path import Path # logging.config.fileConfig('logging.ini') logging.basicConfig() @@ -9,7 +9,7 @@ logging.basicConfig() log = logging.getLogger(__name__) inputPath = Path('tests/in') -log.debug('input path folder: {0}'.format(inputPath.absolute())) +log.debug('input path folder: {0}'.format(inputPath.abspath())) def load_system(): |
