summaryrefslogtreecommitdiff
path: root/git/index
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-01-12 16:33:36 +0100
committerSebastian Thiel <byronimo@gmail.com>2011-01-12 16:33:36 +0100
commit460cafb81f86361536077b3b6432237c6ae3d698 (patch)
tree21b74bd0a492a22e5b9600891fa64be1838a9dcd /git/index
parent6720e8df09a314c3e4ce20796df469838379480d (diff)
downloadgitpython-460cafb81f86361536077b3b6432237c6ae3d698.tar.gz
sleep ui hack fix: removed platform.system() to use sys.platform instead, as platform.system makes a system call itself
Diffstat (limited to 'git/index')
-rw-r--r--git/index/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/index/base.py b/git/index/base.py
index d813e6c1..88410e20 100644
--- a/git/index/base.py
+++ b/git/index/base.py
@@ -630,7 +630,7 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable):
Function with signature (string) func(BaseIndexEntry) function returning a path
for each passed entry which is the path to be actually recorded for the
object created from entry.path. This allows you to write an index which
- is not identical to the layout of the actual files on your hard-dist.
+ is not identical to the layout of the actual files on your hard-disk.
If not None and ``items`` contain plain paths, these paths will be
converted to Entries beforehand and passed to the path_rewriter.
Please note that entry.path is relative to the git repository.