diff options
-rwxr-xr-x | ckandumper | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # Dependencies +import datetime import asyncio import argparse import sys, os, json @@ -88,6 +89,10 @@ class DownloadMultiple: output.write(str(proc.returncode) + '\n') output.close() + output = open(local_filename + '.date', 'w') + output.write(str(datetime.datetime.now()) + '\n') + output.close() + if not str(proc.returncode) in self.globalstats['exitstatus']: self.globalstats['exitstatus'][str(proc.returncode)] = [] |