324 depth = pysvn.depth.infinity |
323 depth = pysvn.depth.infinity |
325 else: |
324 else: |
326 depth = pysvn.depth.immediate |
325 depth = pysvn.depth.immediate |
327 changelists = self.client.get_changelist(name, depth=depth) |
326 changelists = self.client.get_changelist(name, depth=depth) |
328 for fpath, changelist in changelists: |
327 for fpath, changelist in changelists: |
329 if sys.version_info[0] == 2: |
|
330 fpath = fpath.decode('utf-8') |
|
331 changelist = changelist.decode('utf-8') |
|
332 fpath = Utilities.normcasepath(fpath) |
328 fpath = Utilities.normcasepath(fpath) |
333 changelistsDict[fpath] = changelist |
329 changelistsDict[fpath] = changelist |
334 hideChangelistColumn = hideChangelistColumn and \ |
330 hideChangelistColumn = hideChangelistColumn and \ |
335 len(changelistsDict) == 0 |
331 len(changelistsDict) == 0 |
336 |
332 |