소스 검색

Sort capabilities alphabetically.

Jelmer Vernooij 10 년 전
부모
커밋
3e35b7a0d3
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      dulwich/protocol.py

+ 5 - 5
dulwich/protocol.py

@@ -38,16 +38,16 @@ SINGLE_ACK = 0
 MULTI_ACK = 1
 MULTI_ACK_DETAILED = 2
 
-CAPABILITY_NO_PROGRESS = b'no-progress'
+CAPABILITY_DELETE_REFS = b'delete-refs'
 CAPABILITY_INCLUDE_TAG = b'include-tag'
-CAPABILITY_OFS_DELTA = b'ofs-delta'
-CAPABILITY_SIDE_BAND_64K = b'side-band-64k'
-CAPABILITY_THIN_PACK = b'thin-pack'
 CAPABILITY_MULTI_ACK = b'multi_ack'
 CAPABILITY_MULTI_ACK_DETAILED = b'multi_ack_detailed'
+CAPABILITY_NO_PROGRESS = b'no-progress'
+CAPABILITY_OFS_DELTA = b'ofs-delta'
 CAPABILITY_REPORT_STATUS = b'report-status'
-CAPABILITY_DELETE_REFS = b'delete-refs'
 CAPABILITY_SHALLOW = b'shallow'
+CAPABILITY_SIDE_BAND_64K = b'side-band-64k'
+CAPABILITY_THIN_PACK = b'thin-pack'
 
 class ProtocolFile(object):
     """A dummy file for network ops that expect file-like objects."""