Better indent a continuation line (pointed out by flake8) - vt - Print definitions from Vocabolario Treccani
 (HTM) hg clone https://bitbucket.org/iamleot/vt
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) changeset e9d9cd19e66a7be4516f9fb99c505174736b8f95
 (DIR) parent c0806323903cda84ca73f4e9d7d2de824157455c
 (HTM) Author: Leonardo Taccari <iamleot@gmail.com>
       Date:   Sun, 13 May 2018 23:11:36 
       
       Better indent a continuation line (pointed out by flake8)
       
       Diffstat:
        vt.py |  2 +-
        1 files changed, 1 insertions(+), 1 deletions(-)
       ---
       diff -r c0806323903c -r e9d9cd19e66a vt.py
       --- a/vt.py     Sun May 13 14:33:48 2018 +0200
       +++ b/vt.py     Sun May 13 23:11:36 2018 +0200
       @@ -92,7 +92,7 @@
        def print_term(term):
            """Pretty print a definition"""
            print(textwrap.fill(term, width=80, break_long_words=False,
       -        break_on_hyphens=False).strip())
       +                        break_on_hyphens=False).strip())
        
        
        if __name__ == '__main__':