Fixed file upload.
[redakcja.git] / apps / api / management / commands / doc_share.py
index cf454c5..08d61fe 100644 (file)
@@ -3,20 +3,12 @@
 __author__="lreqc"
 __date__ ="$2009-09-08 14:31:26$"
 
-from django.core.management.base import BaseCommand
-from django.utils import simplejson as json
-from django.test.client import Client
-from django.core.urlresolvers import reverse
-
-from optparse import make_option
-
-class Command(BaseCommand):
-    
-    option_list = BaseCommand.option_list + (
-        make_option('-u', '--user', action='store', dest='username'),
-        make_option('-p', '--password', action='store', dest='password'),     
-    )
-    
+from django.core.management.base import NoArgsCommand
+
+# from optparse import make_option
+
+class Command(NoArgsCommand):
+      
     def handle(self, *args, **options):
         client = Client()
         if not options['username'] or not options['password']: