Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

cachethg: debug string fixups

Changeset 3240c347b1f0

Parent 1cc95a6bcd2a

by Steve Borho

Changes to one file · Browse files at 3240c347b1f0 Showing diff from parent 1cc95a6bcd2a Diff from another changeset...

 
135
136
137
138
 
139
140
141
 
150
151
152
153
 
154
155
156
 
161
162
163
164
 
165
166
167
 
135
136
137
 
138
139
140
141
 
150
151
152
 
153
154
155
156
 
161
162
163
 
164
165
166
167
@@ -135,7 +135,7 @@
  debugf("hg.repository() took %g ticks", (GetTickCount() - tc1))   # check if to display overlay icons in this repo   overlayopt = repo.ui.config('tortoisehg', 'overlayicons', ' ').lower() - debugf("%s: repo overlayicons = ", (path, overlayopt)) + debugf("%s: repo overlayicons = %s", (path, overlayopt))   if overlayopt == 'localdisk':   overlayopt = bool(thgutil.netdrive_status(path))   if not overlayopt or overlayopt in 'false off no'.split(): @@ -150,7 +150,7 @@
  return IGNORED   except StandardError, e:   debugf("error while handling %s:", pdir) - debugf(str(e)) + debugf(e)   add(pdir, UNKNOWN)   return UNKNOWN   # get file status @@ -161,7 +161,7 @@
  repostate = repo.status(match=matcher, ignored=True,   clean=True, unknown=True)   except util.Abort, inst: - debugf("abort: %s", str(inst)) + debugf("abort: %s", inst)   debugf("treat as unknown : %s", path)   return UNKNOWN