Skip to content

Commit

Permalink
Fix missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
janhybs committed Nov 24, 2018
1 parent c63160e commit bac7283
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cihpc/structures/project_step_collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class ProjectStepCollect(object):

def __init__(self, **kwargs):
self.files = kwargs.get('files', None)
self.parse = structures.new(kwargs, 'parse', ProjectStepContainerParse)
self.module = kwargs.get('module', 'artifacts.collect.modules.generic_module')
self.parse = cihpc.structures.new(kwargs, 'parse', ProjectStepContainerParse)
self.module = kwargs.get('module', 'cihpc.artifacts.collect.modules.generic_module')
self.move_to = kwargs.get('move-to', None)
self.cut_prefix = kwargs.get('cut-prefix', None)
self.extra = kwargs.get('extra', dict())
Expand Down

0 comments on commit bac7283

Please sign in to comment.