> knock-on errors)... and lastly... ScrIDE doesn't let me run
> manage.py with arguments.

It let's you. You can modify manage.py, and then you can change 
the values in sys.argv to your pleasure. I, for example, do 
this:

if __name__ == "__main__":
        # Shut up the initial syncdb
        import sys
        if len(sys.argv)>1 and sys.argv[1]=="syncdb":
                sys.argv.append("--noinput")
        execute_manager(settings)

... and similarly you can do

  sys.argv.append("runserver")
  sys.argv.append("127.0.0.1:1234")

before calling execute_manager()

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to