瀏覽代碼

Fix whitespace bug in dul-web.

Had a tab that was syntactically correct, but since python treats tabs
as 8 spaces rather than 4 it resulted in incorrect behavior.
Dave Borowitz 15 年之前
父節點
當前提交
ffad182a46
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      bin/dul-web

+ 1 - 1
bin/dul-web

@@ -30,7 +30,7 @@ if __name__ == "__main__":
     else:
     else:
         gitdir = os.getcwd()
         gitdir = os.getcwd()
 
 
-	backend = DictBackend({"/": Repo(gitdir)})
+    backend = DictBackend({"/": Repo(gitdir)})
     app = HTTPGitApplication(backend)
     app = HTTPGitApplication(backend)
     # TODO: allow serving on other ports via command-line flag
     # TODO: allow serving on other ports via command-line flag
     server = make_server('', 8000, app)
     server = make_server('', 8000, app)