Skip to content

Commit

Permalink
Don't forward all cmdline to plugin
Browse files Browse the repository at this point in the history
because **dict not supported in python 3.4
  • Loading branch information
Enteee committed Oct 28, 2018
1 parent 4f036bb commit 769f23b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pdml2flow/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,7 @@ def pdml2flow_new_plugin():
for dst in conf['dst']:
plugin_name = path.basename(dst)
plugin_conf = ConfigParser({
**conf,
**{'plugin_name': plugin_name}
'plugin_name': plugin_name
})
copytree(
resource_filename(__name__, '/plugin-skeleton'),
Expand Down

0 comments on commit 769f23b

Please sign in to comment.