Commit 9882a629 by Craig Heffner

Fixed UnboundLocalError in extractor.py

parent 95bce4ed
...@@ -427,6 +427,7 @@ class Extractor(Module): ...@@ -427,6 +427,7 @@ class Extractor(Module):
Returns the name of the extracted file (blank string if nothing was extracted). Returns the name of the extracted file (blank string if nothing was extracted).
''' '''
fname = '' fname = ''
recurse = False
original_dir = os.getcwd() original_dir = os.getcwd()
rules = self.match(description) rules = self.match(description)
file_path = os.path.realpath(file_name) file_path = os.path.realpath(file_name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment