From 7e453906119c58eb2813865372634c2bb68e8d6f Mon Sep 17 00:00:00 2001 From: GudniRos Date: Wed, 27 Jan 2016 02:16:43 -0800 Subject: [PATCH] Fixing a bug in Data class --- SimPEG/MT/SurveyMT.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SimPEG/MT/SurveyMT.py b/SimPEG/MT/SurveyMT.py index b86ac6c2..83c1f81a 100644 --- a/SimPEG/MT/SurveyMT.py +++ b/SimPEG/MT/SurveyMT.py @@ -536,9 +536,9 @@ class Data(SimPEGsurvey.Data): """ if srcType=='primary': - src = SrcMT.src_polxy_1Dprimary + src = SrcMT.polxy_1Dprimary elif srcType=='total': - src = SrcMT.src_polxy_1DhomotD + src = SrcMT.polxy_1DhomotD else: raise NotImplementedError('{:s} is not a valid source type for MTdata')