Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Fix style nit in Python slicing.
author
Han-Wen Nienhuys
<hanwen@google.com>
Mon, 23 Jul 2007 22:56:37 +0000
(15:56 -0700)
committer
Simon Hausmann
<simon@lst.de>
Thu, 2 Aug 2007 07:40:28 +0000
(09:40 +0200)
Python slices start at 0 by default.
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Simon Hausmann <simon@lst.de>
contrib/fast-import/git-p4
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
a4eba02
)
diff --git
a/contrib/fast-import/git-p4
b/contrib/fast-import/git-p4
index f00c691a7bf71b00ece3177130533988ddb063c2..41e86e76cb9e4718c87185fc0b25e630ad091939 100755
(executable)
--- 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 = ""
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:]
elif p.find("#") != -1:
hashIdx = p.index("#")
self.revision = p[hashIdx:]
- p = p[
0
:hashIdx]
+ p = p[:hashIdx]
elif self.previousDepotPaths == []:
self.revision = "#head"
elif self.previousDepotPaths == []:
self.revision = "#head"
@@
-1299,7
+1299,7
@@
class P4Sync(Command):
changes.sort()
if len(self.maxChanges) > 0:
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:
if len(changes) == 0:
if not self.silent: