Skip to content
Snippets Groups Projects
Commit 0f5300c1 authored by Christian Fobel's avatar Christian Fobel
Browse files

Fix typo in save_plot 0MQ plugin interface

parent 7a1de68e
Branches develop
No related merge requests found
...@@ -117,10 +117,10 @@ class DstatPlugin(ZmqPlugin): ...@@ -117,10 +117,10 @@ class DstatPlugin(ZmqPlugin):
Args Args
---- ----
save_plot_path (str) : Path to file to save text data. save_plot_path (str) : Path to file to save plot.
''' '''
data = decode_content_data(request) data = decode_content_data(request)
save_text(self.parent.current_exp, data['save_plot_path']) save_plot(self.parent.current_exp, data['save_plot_path'])
def on_execute__acquisition_complete(self, request): def on_execute__acquisition_complete(self, request):
''' '''
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment