Fixed bug where if destination was unspecified, changed would not be set, resulting in an UnboundLocalError.

This commit is contained in:
Piffey Parlance 2013-04-29 13:59:06 -05:00
parent c15d52cc07
commit 99196024dd

View file

@ -394,6 +394,8 @@ def main():
file_args['path'] = dest
changed = module.set_file_attributes_if_different(file_args, changed)
resp['path'] = dest
else:
changed = False
# Transmogrify the headers, replacing '-' with '_', since variables dont work with dashes.
uresp = {}