diff options
author | Han-Wen Nienhuys <hanwen@google.com> | 2007-07-23 15:56:37 -0700 |
---|---|---|
committer | Simon Hausmann <simon@lst.de> | 2007-08-02 09:40:28 +0200 |
commit | 7fcff9def564fae7de5d2a34a095229a999b80b0 (patch) | |
tree | 67872507f646ba31587a7b2e13bb4d9afa91dd21 /contrib/fast-import | |
parent | a4eba020f96e1b85f856a992782b8bb2bab6a719 (diff) | |
download | git-7fcff9def564fae7de5d2a34a095229a999b80b0.tar.gz git-7fcff9def564fae7de5d2a34a095229a999b80b0.tar.xz |
Fix style nit in Python slicing.
Python slices start at 0 by default.
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Simon Hausmann <simon@lst.de>
Diffstat (limited to 'contrib/fast-import')
-rwxr-xr-x | contrib/fast-import/git-p4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index f00c691a7..41e86e76c 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -1181,11 +1181,11 @@ class P4Sync(Command): elif ',' not in self.changeRange: self.revision = self.changeRange self.changeRange = "" - p = p[0:atIdx] + p = p[:atIdx] elif p.find("#") != -1: hashIdx = p.index("#") self.revision = p[hashIdx:] - p = p[0:hashIdx] + p = p[:hashIdx] elif self.previousDepotPaths == []: self.revision = "#head" @@ -1299,7 +1299,7 @@ class P4Sync(Command): changes.sort() if len(self.maxChanges) > 0: - changes = changes[0:min(int(self.maxChanges), len(changes))] + changes = changes[:min(int(self.maxChanges), len(changes))] if len(changes) == 0: if not self.silent: |