Skip to content
Snippets Groups Projects
Commit 03ff217e authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #7432: Fixed imports

parent 3528361d
No related branches found
No related tags found
No related merge requests found
......@@ -17,9 +17,9 @@
# You should have received a copy of the GNU General Public License along
# with the LOFAR software suite. If not, see <http://www.gnu.org/licenses/>.
import lofar.messagebus.msgbus
import lofar.messagebus.message
class TaskFeedbackDataproducts(lofar.messagebus.msgbus.Message):
class TaskFeedbackDataproducts(lofar.messagebus.message.Message):
def __init__(self, from_, forUser, summary, momID, sasID, feedback):
super(TaskFeedbackDataproducts, self).__init__(
from_,
......
......@@ -17,9 +17,9 @@
# You should have received a copy of the GNU General Public License along
# with the LOFAR software suite. If not, see <http://www.gnu.org/licenses/>.
import lofar.messagebus.msgbus
import lofar.messagebus.message
class TaskFeedbackProcessing(lofar.messagebus.msgbus.Message):
class TaskFeedbackProcessing(lofar.messagebus.message.Message):
def __init__(self, from_, forUser, summary, momID, sasID, feedback):
super(TaskFeedbackProcessing, self).__init__(
from_,
......
......@@ -18,7 +18,7 @@
# with the LOFAR software suite. If not, see <http://www.gnu.org/licenses/>.
#import lofar.messagebus.Message
import lofar.messaging.msgbus
import lofar.messaging.message
import xml.dom.minidom as xml
LOFAR_STATUS_MSG_TEMPLATE = """
......@@ -27,7 +27,7 @@ LOFAR_STATUS_MSG_TEMPLATE = """
<state/>
</task>"""
class TaskFeedbackStatus(lofar.messaging.msgbus.Message):
class TaskFeedbackStatus(lofar.messaging.message.Message):
def __init__(self, from_, forUser, summary, momID, sasID, status):
super(TaskFeedbackStatus, self).__init__(
from_,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment