]> git.ipfire.org Git - thirdparty/python-fints.git/commitdiff
Fix a syntax error in documentation
authorRaphael Michel <mail@raphaelmichel.de>
Thu, 29 Nov 2018 16:56:46 +0000 (17:56 +0100)
committerRaphael Michel <mail@raphaelmichel.de>
Mon, 3 Dec 2018 18:35:22 +0000 (19:35 +0100)
docs/transfers.rst

index d39a0c4363234f6f4662dd7d25b36b8d4e89754b..d2d990df720edfe961275e407b905c7cb9a86be7 100644 (file)
@@ -52,7 +52,7 @@ Example
     if isinstance(res, NeedTANResponse):
         print(res.challenge)
 
-        if getattr(res, challenge_hhduc, None):
+        if getattr(res, 'challenge_hhduc', None):
             try:
                 terminal_flicker_unix(res.challenge_hhduc)
             except KeyboardInterrupt: