From 7ea166174732b32b9b6b4a3da8b78368a0789961 Mon Sep 17 00:00:00 2001
From: agusmakmun <summon.agus@gmail.com>
Date: Tue, 19 Apr 2016 14:58:46 +0700
Subject: [PATCH] Update tabulasi

---
 ...l-files-pyc-with-recrusive-method.markdown | 20 +++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/_posts/2016-04-19-remove-all-files-pyc-with-recrusive-method.markdown b/_posts/2016-04-19-remove-all-files-pyc-with-recrusive-method.markdown
index 353ac78..44aaf56 100644
--- a/_posts/2016-04-19-remove-all-files-pyc-with-recrusive-method.markdown
+++ b/_posts/2016-04-19-remove-all-files-pyc-with-recrusive-method.markdown
@@ -9,16 +9,16 @@ This method simple but important. Example in your project dir is like this:
 
 {% highlight ruby %}
 project_dir/
-		   __init__.py
-		   __init__.pyc
-		   something.py
-		   something.pyc
-		   ...
-		   core/
-		   	   /__init__.py
-		   	   /__init__.pyc
-		   	   /build.py
-		   	   /build.pyc
+           __init__.py
+           __init__.pyc
+           something.py
+           something.pyc
+           ...
+           core/
+               __init__.py
+               __init__.pyc
+               build.py
+               build.pyc
 {% endhighlight %}
 
 Deleting the `.pyc` files one by one would be spending a lot of time. and you will be bored. There is sample how to handle it.
-- 
GitLab