Skip to content

Commit

Permalink
removed unnecessary padding to size of file in ls now that we've remo…
Browse files Browse the repository at this point in the history
…ved decimal places
  • Loading branch information
alex-phillips committed Aug 17, 2015
1 parent 7512ed2 commit 78a54b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CloudDrive/Commands/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ protected function listNodes(array $nodes, $sortBy = self::SORT_BY_NAME)
$date,
str_pad($node['status'], 10),
str_pad($node['kind'], 7),
str_pad($this->convertFilesize($node['contentProperties']['size'], 0), 9),
str_pad($this->convertFilesize($node['contentProperties']['size'], 0), 6),
$name
)
);
Expand Down

0 comments on commit 78a54b6

Please sign in to comment.