Skip to content

Commit

Permalink
Improve combine plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaiter committed Jun 22, 2013
1 parent 18d06a3 commit f61a7f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spreadsplug/combine.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class CombinePlugin(DownloadPlugin):
def download(self, path):
def download(self, cameras, path):
left_dir = os.path.join(path, 'left')
right_dir = os.path.join(path, 'right')
target_dir = os.path.join(path, 'raw')
Expand All @@ -30,5 +30,5 @@ def download(self, path):
shutil.rmtree(right_dir)
shutil.rmtree(left_dir)

def delete(self):
def delete(self, cameras):
pass

0 comments on commit f61a7f8

Please sign in to comment.