Skip to content

Commit

Permalink
fix the error of filter name in macros
Browse files Browse the repository at this point in the history
  • Loading branch information
qixinbo committed Jul 29, 2020
1 parent 1a40295 commit 749026c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imagepy/menus/Plugins/Macros/recorder_plg.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def readmc(path):
class Macros(dataio.Reader):
title = 'Run Macros'
tag = 'mc'
filt = 'MC'
filt = ['MC']

def readwf(path):
with open(path) as f: return f.read()
Expand All @@ -19,6 +19,6 @@ def readwf(path):
class WorkFlow(dataio.Reader):
title = 'Run WorkFlow'
tag = 'wf'
filt = 'wf'
filt = ['wf']

plgs = [Macros, WorkFlow]

0 comments on commit 749026c

Please sign in to comment.