Fixed typo from copy pasting

This commit is contained in:
Rudi Grinberg 2012-07-05 16:28:49 -04:00
parent 38dbc28e1c
commit e67be25b85
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ class AirtimeMediaMonitorBootstrap():
time_diff_sec = time.time() - os.path.getmtime(self.mmc.timestamp_file)
command = self.mmc.find_command(directory=dir, extra_arguments=("-type f -readable -mmin -%d" % (time_diff_sec/60+1)))
else:
command = self.mmc.find_command(directory=dir, extra_arguments="-type f -readable -mmin -%d")
command = self.mmc.find_command(directory=dir, extra_arguments="-type f -readable")
self.logger.debug(command)
stdout = self.mmc.exec_command(command)