|
@@ -16,7 +16,10 @@
|
|
|
# limitations under the License.
|
|
# limitations under the License.
|
|
|
# a thirdparty project
|
|
# a thirdparty project
|
|
|
|
|
|
|
|
-import sys, logging
|
|
|
|
|
|
|
+import logging
|
|
|
|
|
+import pprint
|
|
|
|
|
+import sys
|
|
|
|
|
+
|
|
|
from django.core.management.base import BaseCommand
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
|
|
|
from desktop import conf
|
|
from desktop import conf
|
|
@@ -112,7 +115,9 @@ def runcpserver(argset=[], **kwargs):
|
|
|
return
|
|
return
|
|
|
|
|
|
|
|
# Start the webserver
|
|
# Start the webserver
|
|
|
- print _('starting server with options %(options)s') % {'options': options}
|
|
|
|
|
|
|
+ print _('starting server with options:')
|
|
|
|
|
+ pprint.pprint(options)
|
|
|
|
|
+
|
|
|
start_server(options)
|
|
start_server(options)
|
|
|
|
|
|
|
|
|
|
|