浏览代码

Fix ordering of imports.

Jelmer Vernooij 15 年之前
父节点
当前提交
495f0dc8f1
共有 1 个文件被更改,包括 11 次插入9 次删除
  1. 11 9
      dulwich/server.py

+ 11 - 9
dulwich/server.py

@@ -28,6 +28,7 @@ Documentation/technical directory in the cgit distribution, and in particular:
 
 
 import collections
 import collections
 from cStringIO import StringIO
 from cStringIO import StringIO
+import os
 import SocketServer
 import SocketServer
 
 
 from dulwich.errors import (
 from dulwich.errors import (
@@ -42,23 +43,24 @@ from dulwich.objects import (
     hex_to_sha,
     hex_to_sha,
     sha_to_hex,
     sha_to_hex,
     )
     )
+from dulwich.pack import (
+    read_pack_header,
+    unpack_object,
+    write_pack_data,
+    )
 from dulwich.protocol import (
 from dulwich.protocol import (
+    MULTI_ACK,
+    MULTI_ACK_DETAILED,
     ProtocolFile,
     ProtocolFile,
     ReceivableProtocol,
     ReceivableProtocol,
+    SINGLE_ACK,
     TCP_GIT_PORT,
     TCP_GIT_PORT,
     ZERO_SHA,
     ZERO_SHA,
     extract_capabilities,
     extract_capabilities,
     extract_want_line_capabilities,
     extract_want_line_capabilities,
-    SINGLE_ACK,
-    MULTI_ACK,
-    MULTI_ACK_DETAILED,
     ack_type,
     ack_type,
     )
     )
-from dulwich.pack import (
-    read_pack_header,
-    unpack_object,
-    write_pack_data,
-    )
+
 
 
 class Backend(object):
 class Backend(object):
     """A backend for the Git smart server implementation."""
     """A backend for the Git smart server implementation."""
@@ -157,7 +159,7 @@ class PackStreamVerifier(object):
     def _buf_len(self):
     def _buf_len(self):
         buf = self._rbuf
         buf = self._rbuf
         start = buf.tell()
         start = buf.tell()
-        buf.seek(0, 2)
+        buf.seek(0, os.SEEK_END)
         end = buf.tell()
         end = buf.tell()
         buf.seek(start)
         buf.seek(start)
         return end - start
         return end - start