소스 검색

fix indentation

Damjan Georgievski 12 년 전
부모
커밋
cda7b49474
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      uwsgi/setup.py

+ 5 - 5
uwsgi/setup.py

@@ -5,13 +5,13 @@ import setup_util
 
 
 
 
 def start(args):
 def start(args):
-  subprocess.Popen('uwsgi --gevent 1000 --http :8080 -w hello --pidfile /tmp/uwsgi.pid', shell=True, cwd="uwsgi")
-  return 0
+    subprocess.Popen('uwsgi --gevent 1000 --http :8080 -w hello --pidfile /tmp/uwsgi.pid', shell=True, cwd="uwsgi")
+    return 0
 
 
 
 
 def stop():
 def stop():
-      try:
+    try:
         subprocess.Popen('uwsgi --stop /tmp/uwsgi.pid', shell=True, cwd="uwsgi")
         subprocess.Popen('uwsgi --stop /tmp/uwsgi.pid', shell=True, cwd="uwsgi")
-      except OSError:
+    except OSError:
         pass
         pass
-  return 0
+    return 0