Codebase list onioncircuits / 4ffad7e
improve robustness of autopkgtest Sascha Steinbiss 3 years ago
2 changed file(s) with 4 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
33 * Use debhelper 13.
44 * Add dependency on python3-pkg-resources.
55 * Update my email addresses in autopkgtest scripts.
6 * Improve robustness of autopkgtest by adding extra checking.
67
78 -- Sascha Steinbiss <satta@debian.org> Sun, 06 Sep 2020 10:39:33 +0200
89
00 #!/usr/bin/env python3
11 # -*- coding: utf-8 -*-
2 # Copyright (C) 2016, 2019, Sascha Steinbiss <satta@debian.org>
2 # Copyright (C) 2016, 2020, Sascha Steinbiss <satta@debian.org>
33 #
44 # This program is free software: you can redistribute it and/or modify
55 # it under the terms of the GNU General Public License as published by
4949 nicks = []
5050 for _, entry in enumerate(circ.path):
5151 _, nickname = entry
52 nicks.append(nickname)
52 if nickname != None:
53 nicks.append(nickname)
5354 if len(nicks) > 0:
5455 circs.add(", ".join(nicks))
5556 return circs