You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 81 in sacpickle.py:
' with open(zfile(picklefile+'.'+zipmode, 'rb')) as f:'
Since this variable 'picklefile' containing suffix about zipmode (bz2 or gz), so I think there should be:
' with open(zfile(picklefile, 'rb')) as f:'
line 81 in sacpickle.py:
' with open(zfile(picklefile+'.'+zipmode, 'rb')) as f:'
Since this variable 'picklefile' containing suffix about zipmode (bz2 or gz), so I think there should be:
' with open(zfile(picklefile, 'rb')) as f:'