10689:3ede487187f2 | 10690:fab36645aa7d |
---|---|
54 args.append("--print") | 54 args.append("--print") |
55 if deleteAll: | 55 if deleteAll: |
56 args.append("--all") | 56 args.append("--all") |
57 | 57 |
58 client = self.vcs.getClient() | 58 client = self.vcs.getClient() |
59 out, err = client.runcommand(args) | 59 out, _err = client.runcommand(args) |
60 if out: | 60 if out: |
61 purgeEntries = out.strip().split() | 61 purgeEntries = out.strip().split() |
62 | 62 |
63 return purgeEntries | 63 return purgeEntries |
64 | 64 |