Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master, master-1, and master-0

Reorder imports.

Changeset a6b45a39af11

Parent 384045f179c9

by Jelmer Vernooij

Changes to one file · Browse files at a6b45a39af11 Showing diff from parent 384045f179c9 Diff from another changeset...

 
16
17
18
19
 
 
20
21
22
23
24
 
25
26
27
28
29
 
 
30
31
 
32
33
34
 
16
17
18
 
19
20
21
 
22
 
 
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@@ -16,19 +16,21 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,  # MA 02110-1301, USA.   -from objects import ( +from dulwich.objects import ( + hex_to_sha,   ShaFile, - hex_to_sha,   ) -import os, tempfile -from pack import ( +from dulwich.pack import (   iter_sha1,   load_packs,   write_pack_index_v2,   PackData,   ) + +import os  import tempfile  import urllib2 +  PACKDIR = 'pack'    class ObjectStore(object):