Skip to content

Commit

Permalink
Fix ImportError handling in qudikernel.py
Browse files Browse the repository at this point in the history
  • Loading branch information
johnjarman committed Jan 18, 2020
1 parent 2c8df92 commit cfbfa71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/qudikernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

try:
from .parentpoller import ParentPollerUnix, ParentPollerWindows
except ModuleNotFoundError:
except ImportError:
from parentpoller import ParentPollerUnix, ParentPollerWindows

rpyc.core.protocol.DEFAULT_CONFIG['allow_pickle'] = True
Expand Down
1 change: 1 addition & 0 deletions documentation/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

Changes/New features:

* Bug fix to qudikernel.py kernel installer for Python 3.7.6
* Cleanup/Improvement/Debug of POI manager (logic and GUI)
* New POI manager tool _POI selector_ which allows adding of new POIs by clicking inside the scan
image
Expand Down

0 comments on commit cfbfa71

Please sign in to comment.