test file

standalone
Simon Caminada 8 years ago
parent e92f61efd0
commit fd2e2e1c84

@ -0,0 +1 @@
__author__ = 'Ralf Braendli'

@ -0,0 +1 @@
__author__ = 'Ralf Braendli'

@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
from django.core.management.base import BaseCommand
class Command(BaseCommand):
def handle(self, *args, **options):
f = open('some_file.txt', 'w+')
f.write('test')
f.close()
f = open('/whoosh/some_file.txt', 'w+')
f.write('test')
f.close()
Loading…
Cancel
Save