geophysics / mtpy

collection of python tools for standard MT data processing
GNU General Public License v3.0
32 stars 32 forks source link

bug in _set_zrot() #29

Open evgenizer opened 8 years ago

evgenizer commented 8 years ago

print 'length of angle list not correct'+\ '({0} instead of {1})'.format(len(angle), len(self.z))

should be

print 'length of angle list not correct'+\ '({0} instead of {1})'.format(len(angle), len(self.Z.z))

alkirkby commented 8 years ago

Thanks, I’ve updated the code.

Alison.

From: evgenizer [mailto:notifications@github.com] Sent: Saturday, 12 March 2016 9:47 AM To: geophysics/mtpy mtpy@noreply.github.com Subject: [mtpy] bug in _set_zrot() (#29)

print 'length of angle list not correct'+\ '({0} instead of {1})'.format(len(angle), len(self.z))

should be

print 'length of angle list not correct'+\ '({0} instead of {1})'.format(len(angle), len(self.Z.z))

— Reply to this email directly or view it on GitHubhttps://github.com/geophysics/mtpy/issues/29.