Skip to content
Snippets Groups Projects
Commit 412dba34 authored by Martin Craig's avatar Martin Craig
Browse files

OOPS: Accidentally committed incomplete merge

parent 6b10281d
No related branches found
No related tags found
No related merge requests found
...@@ -624,21 +624,6 @@ class _FileOrThing(object): ...@@ -624,21 +624,6 @@ class _FileOrThing(object):
setattr(wrapped, '_fot_prefixes', prefixes) setattr(wrapped, '_fot_prefixes', prefixes)
# Call the function # Call the function
<<<<<<< HEAD
result = func(*args, **kwargs)
# make a _Reults object to store
# the output. If we are decorating
# another _FileOrThing, the
# results will get merged together
# into a single _Results dict.
if not isinstance(result, _FileOrThing._Results):
result = _FileOrThing._Results(result)
# Load the LOADed outputs
for oname, ofile in outfiles.items():
if op.exists(ofile): result[oname] = self.__load(ofile)
=======
try: try:
result = func(*args, **kwargs) result = func(*args, **kwargs)
...@@ -650,7 +635,6 @@ class _FileOrThing(object): ...@@ -650,7 +635,6 @@ class _FileOrThing(object):
delattr(wrapped, '_fot_workdir') delattr(wrapped, '_fot_workdir')
delattr(wrapped, '_fot_outprefix') delattr(wrapped, '_fot_outprefix')
delattr(wrapped, '_fot_prefixes') delattr(wrapped, '_fot_prefixes')
>>>>>>> enh/wrappers
return self.__generateResult( return self.__generateResult(
td, result, outprefix, outfiles, prefixes) td, result, outprefix, outfiles, prefixes)
...@@ -766,12 +750,7 @@ class _FileOrThing(object): ...@@ -766,12 +750,7 @@ class _FileOrThing(object):
isprefixed = (prefix is not None and isprefixed = (prefix is not None and
name.startswith(prefix)) name.startswith(prefix))
<<<<<<< HEAD
if val is None:
allargs.pop(name, None)
=======
if not (isprefixed or name in things): if not (isprefixed or name in things):
>>>>>>> enh/wrappers
continue continue
# Prefixed output files may only # Prefixed output files may only
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment