Rev 502: Remove debug output. in file:///data/jelmer/bzr-svn/0.4/

Jelmer Vernooij jelmer at samba.org
Thu Jul 12 09:28:30 BST 2007


At file:///data/jelmer/bzr-svn/0.4/

------------------------------------------------------------
revno: 502
revision-id: jelmer at samba.org-20070626203254-pcea47bzqxv3wkw5
parent: jelmer at samba.org-20070626200724-b0mt1hsm0lj0gqf4
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: main
timestamp: Tue 2007-06-26 22:32:54 +0200
message:
  Remove debug output.
modified:
  revids.py                      revids.py-20070416220458-36vfa0730cchevp1-1
=== modified file 'revids.py'
--- a/revids.py	2007-06-26 20:07:24 +0000
+++ b/revids.py	2007-06-26 20:32:54 +0000
@@ -98,7 +98,6 @@
         self.cachedb.commit()
     
     def lookup_revid(self, revid):
-        mutter('lookup branch revid %r' % revid)
         ret = self.cachedb.execute(
             "select path, min_revnum, max_revnum, scheme from revmap where revid='%s'" % revid).fetchone()
         if ret is None:
@@ -106,7 +105,6 @@
         return (str(ret[0]), ret[1], ret[2], ret[3])
 
     def lookup_branch_revnum(self, revnum, path, scheme):
-        mutter('lookup branch revnum %r, %r' % (revnum, path))
         # FIXME: SCHEME MISSING
         revid = self.cachedb.execute(
                 "select revid from revmap where max_revnum = min_revnum and min_revnum='%s' and path='%s' and scheme='%s'" % (revnum, path, scheme)).fetchone()




More information about the bazaar-commits mailing list