Skip to content

Commit

Permalink
Fix parse error in ada16a6
Browse files Browse the repository at this point in the history
  • Loading branch information
acoulton committed Jul 10, 2015
1 parent ada16a6 commit 39466ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/S3/Transfer.php
Expand Up @@ -323,7 +323,7 @@ private function createS3Key($filename)
);

if (isset($this->s3Args['Key'])) {
return rtrim($this->s3Args['Key']), '/').'/'.$relative_file_path;
return rtrim($this->s3Args['Key'], '/').'/'.$relative_file_path;
} else {
return $relative_file_path;
}
Expand Down

0 comments on commit 39466ed

Please sign in to comment.