65 os.chdir(projectPath) |
64 os.chdir(projectPath) |
66 try: |
65 try: |
67 entries = self.client.info2(fn, recurse=False) |
66 entries = self.client.info2(fn, recurse=False) |
68 infoStr = "<table>" |
67 infoStr = "<table>" |
69 for path, info in entries: |
68 for path, info in entries: |
70 if sys.version_info[0] == 2: |
|
71 path = path.decode('utf-8') |
|
72 infoStr += self.tr( |
69 infoStr += self.tr( |
73 "<tr><td><b>Path (relative to project):</b></td>" |
70 "<tr><td><b>Path (relative to project):</b></td>" |
74 "<td>{0}</td></tr>").format(path) |
71 "<td>{0}</td></tr>").format(path) |
75 if info['URL']: |
72 if info['URL']: |
76 infoStr += self.tr( |
73 infoStr += self.tr( |