Changeset 96e151f in sasview
- Timestamp:
- May 6, 2016 4:23:48 PM (9 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- a24bd6e
- Parents:
- e791cca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
check_packages.py
r243fbc0 r96e151f 7 7 # Fix for error: hash-collision-3-both-1-and-1/ 8 8 # See http://jaredforsyth.com/blog/2010/apr/28/accessinit-hash-collision-3-both-1-and-1/ 9 import PIL.Image 10 sys.modules['Image'] = PIL.Image 9 try: 10 import PIL.Image 11 except ImportError: 12 pass 13 else: 14 sys.modules['Image'] = PIL.Image 15 11 16 12 17 common_required_package_list = {
Note: See TracChangeset
for help on using the changeset viewer.