1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Author: Andreas Tille <tille@debian.org>
Last-Update: 2025-07-12
Bug-Debian: https://bugs.debian.org/1085776
Description: Fix Python syntax
--- a/pithos/pandora/blowfish.py
+++ b/pithos/pandora/blowfish.py
@@ -37,7 +37,7 @@ public domain. Stated on the web site:
The implementation in this module is a python conversion and
adaptation of Bruce Schneier's `C implementation
-<http://www.schneier.com/blowfish-download.html>`__\ .
+<http://www.schneier.com/blowfish-download.html>`__ .
"""
@@ -396,4 +396,4 @@ _S_INIT = [[0xd1310ba6,0x98dfb5ac,0x2ffd
0x85cbfe4e,0x8ae88dd8,0x7aaaf9b0,0x4cf9aa7e,0x1948c25c,0x02fb8a8c,
0x01c36ae4,0xd6ebe1f9,0x90d4f869,0xa65cdea0,0x3f09252d,0xc208e69f,
0xb74e6132,0xce77e25b,0x578fdfe3,0x3ac372e6]
- ]
\ No newline at end of file
+ ]
|