diff options
author | teor <teor2345@gmail.com> | 2016-09-22 06:48:08 +1000 |
---|---|---|
committer | teor <teor2345@gmail.com> | 2016-12-19 15:04:54 +1100 |
commit | 6ed8e3764b3c58f3f35402b2eacd03849baa73c8 (patch) | |
tree | b5ee61a59680c97b54511c473ba71d97232b3496 /scripts/maint/updateFallbackDirs.py | |
parent | ae89d9745d3a0d0b2fdf333bd3299d1654bf7b39 (diff) | |
download | tor-6ed8e3764b3c58f3f35402b2eacd03849baa73c8.tar.gz tor-6ed8e3764b3c58f3f35402b2eacd03849baa73c8.zip |
Add a missed return to fallbackdir_comment() in updateFallbackDirs.py
Closes ticket #20877.
Diffstat (limited to 'scripts/maint/updateFallbackDirs.py')
-rwxr-xr-x | scripts/maint/updateFallbackDirs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/maint/updateFallbackDirs.py b/scripts/maint/updateFallbackDirs.py index 110ecda64c..094cbd8845 100755 --- a/scripts/maint/updateFallbackDirs.py +++ b/scripts/maint/updateFallbackDirs.py @@ -1183,6 +1183,7 @@ class Candidate(object): s += '\n' s += '*/' s += '\n' + return s # output the fallback info C string for this fallback # this is the text that would go after FallbackDir in a torrc |