rolinh / dfc

Report file system space usage information with style
BSD 3-Clause "New" or "Revised" License
108 stars 9 forks source link

remove incorrect csv separators #2

Closed tharugrim closed 10 years ago

tharugrim commented 10 years ago

The output of the csv export currently looks like this:

/dev/sda5,69,%,8.7,G,28.0,G,/

The comma between the value and the percent sign or between the value and the unit break the csv layout. With the incorrect commas removed, it now looks like this:

/dev/sda5,69%,8.7G,28.0G,/
rolinh commented 10 years ago

I think that at the time I wrote this, I thought that it was better to separate everything. But indeed, it does not seem to make a lot of sense. Thanks for your contribution.