From d26b12d45e18c5d2fe0295e088bedd57265543b2 Mon Sep 17 00:00:00 2001 From: Brandon Myers Date: Thu, 4 Jun 2015 16:26:00 -0700 Subject: [PATCH] softlink typo bug --- c_test_environment/grappa_ingest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c_test_environment/grappa_ingest.py b/c_test_environment/grappa_ingest.py index b04fe0d1..a725cb6d 100644 --- a/c_test_environment/grappa_ingest.py +++ b/c_test_environment/grappa_ingest.py @@ -60,7 +60,7 @@ def softlink(self, files): path = self._get_upload_path() - for f in file: + for f in files: subprocess.check_call('ln -s {target} {name}'.format( target=f, name=path+'/'+os.path.basename(f)))