Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ MANIFEST
.pytest_cache/
.tox/
PySpice.egg-info/
PySpice/__init__.py
build/
dist/
doc/sphinx/build/
Expand Down Expand Up @@ -98,3 +97,7 @@ tools/upload-www
trash/

unit-test/test.py
PySpicePro.egg-info/
.settings/
.project
.pydevproject
2 changes: 1 addition & 1 deletion PySpice/Config/ConfigInstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

####################################################################################################

import PySpice.Tools.Path as PathTools # Fixme: why ?
from ..Tools import Path as PathTools

####################################################################################################

Expand Down
2 changes: 1 addition & 1 deletion PySpice/Logging/Logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def setup_logging(application_name='PySpice',
"""

logging_config_file_name = ConfigInstall.Logging.find(config_file)
logging_config = yaml.load(open(logging_config_file_name, 'r'))
logging_config = yaml.load(open(logging_config_file_name, 'r'), Loader=yaml.FullLoader)

if ConfigInstall.OS.on_linux:
# Fixme: \033 is not interpreted in YAML
Expand Down
Loading