Skip .git dir

This commit is contained in:
Tom Willemsen 2011-11-05 03:50:48 +01:00
parent 0e14ef7f7c
commit 528737be80

View file

@ -5,11 +5,14 @@ from django.core.management.base import BaseCommand, CommandError
from settings import MARKDOWN_PATH, DEPLOY_PATH
ignore_dir = '.git'
class Command(BaseCommand):
help = 'Parse markdown files in %s' % MARKDOWN_PATH
def handle(self, *args, **options):
for root, dirs, files in os.walk(MARKDOWN_PATH):
if ignore_dir not in root:
for file in files:
subdir = root.replace(MARKDOWN_PATH, "")
mdfile = '%s/%s' % (root, file)