Fix alignment with tabs instead of spaces
diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php
index 04abc9a..fd9c8b3 100644
--- a/system/libraries/Upload.php
+++ b/system/libraries/Upload.php
@@ -1058,7 +1058,7 @@
 			@exec('file --brief --mime-type ' . escapeshellarg($file['tmp_path']), $output, $return_code);
 			if ($return_code === 0 && strlen($output[0]) > 0) // A return status code != 0 would mean failed execution
 			{
-                        	$this->file_type = rtrim($output[0]);
+				$this->file_type = rtrim($output[0]);
 				return;
 			}
 		}