##// END OF EJS Templates
Removed forgotten debug print statement from commands.py and tests.
Thomas Arendsen Hein -
r1044:4bfa960f default
parent child Browse files
Show More
@@ -867,7 +867,6 b' def log(ui, repo, *pats, **opts):'
867 # Only files, no patterns. Check the history of each file.
867 # Only files, no patterns. Check the history of each file.
868 def filerevgen(filelog):
868 def filerevgen(filelog):
869 for i in xrange(filelog.count() - 1, -1, -window):
869 for i in xrange(filelog.count() - 1, -1, -window):
870 print "filelog"
871 revs = []
870 revs = []
872 for j in xrange(max(0, i - window), i + 1):
871 for j in xrange(max(0, i - window), i + 1):
873 revs.append(filelog.linkrev(filelog.node(j)))
872 revs.append(filelog.linkrev(filelog.node(j)))
@@ -20,7 +20,6 b' 1'
20
20
21
21
22 we should see one log entry for a
22 we should see one log entry for a
23 filelog
24 changeset: 0:c19d34741b0a
23 changeset: 0:c19d34741b0a
25 user: test
24 user: test
26 date: Thu Jan 1 00:00:00 1970 +0000
25 date: Thu Jan 1 00:00:00 1970 +0000
@@ -30,7 +29,6 b' this should show a revision linked to ch'
30 rev offset length base linkrev nodeid p1 p2
29 rev offset length base linkrev nodeid p1 p2
31 0 0 3 0 0 b789fdd96dc2 000000000000 000000000000
30 0 0 3 0 0 b789fdd96dc2 000000000000 000000000000
32 we should see one log entry for b
31 we should see one log entry for b
33 filelog
34 changeset: 1:3b5b84850bbe
32 changeset: 1:3b5b84850bbe
35 tag: tip
33 tag: tip
36 user: test
34 user: test
General Comments 0
You need to be logged in to leave comments. Login now