Browse Source

Some formatting fixes.

Jelmer Vernooij 14 years ago
parent
commit
189e678217
4 changed files with 3 additions and 3 deletions
  1. 1 0
      dulwich/file.py
  2. 1 1
      dulwich/object_store.py
  3. 1 1
      dulwich/protocol.py
  4. 0 1
      dulwich/repo.py

+ 1 - 0
dulwich/file.py

@@ -30,6 +30,7 @@ def ensure_dir_exists(dirname):
         if e.errno != errno.EEXIST:
             raise
 
+
 def fancy_rename(oldname, newname):
     """Rename file with temporary backup file to rollback if rename fails"""
     if not os.path.exists(newname):

+ 1 - 1
dulwich/object_store.py

@@ -183,7 +183,7 @@ class BaseObjectStore(object):
 
         :param tree_id: SHA1 of the tree.
         :param include_trees: If True, include tree objects in the iteration.
-        :yield: Tuples of (path, mode, hexhsa) for objects in a tree.
+        :return: Yields tuples of (path, mode, hexhsa) for objects in a tree.
         """
         todo = [('', stat.S_IFDIR, tree_id)]
         while todo:

+ 1 - 1
dulwich/protocol.py

@@ -143,7 +143,7 @@ class Protocol(object):
     def read_pkt_seq(self):
         """Read a sequence of pkt-lines from the remote git process.
 
-        :yield: Each line of data up to but not including the next flush-pkt.
+        :return: Yields each line of data up to but not including the next flush-pkt.
         """
         pkt = self.read_pkt_line()
         while pkt:

+ 0 - 1
dulwich/repo.py

@@ -51,7 +51,6 @@ from dulwich.objects import (
     Tag,
     Tree,
     hex_to_sha,
-    object_class,
     )
 import warnings