Fix log path
diff --git a/turbo_hipster/lib/utils.py b/turbo_hipster/lib/utils.py
index 016c69c..5a0237d 100644
--- a/turbo_hipster/lib/utils.py
+++ b/turbo_hipster/lib/utils.py
@@ -214,7 +214,8 @@
     dest_file = os.path.join(dest_dir, dest_filename)
 
     shutil.copyfile(file_path, dest_file)
-    return local_config['prepend_url'] + os.path.join(dest_dir, dest_filename)
+    return local_config['prepend_url'] + os.path.join(job_log_dir,
+                                                      dest_filename)
 
 
 def scp_push_file(job_log_dir, file_path, local_config):