German-Immersive-Railroading-Community / BackupSystem

Line too long FLK-E501
Style
Minor
2 years ago2 years old
line too long (121 > 88 characters)
 95        zipname = f'{today}({current_time}).zip'
 96    else:
 97        zipname = input(
 98            'There already ran a update today!\nWhat should be the name of the file (with .zip, empty for overwrite)?> ') 99        if len(zipname) < 5:
100            zipname = today + ".zip"
101            lg.info('No name given; overwriting...')
line too long (113 > 88 characters)
 84            backfiles.append(line.replace('\n', ''))
 85except FileNotFoundError:
 86    lg.critical(
 87        'The file containing the files and folders that should be backed up (backfiles.txt) has not been found!') 88    exit()
 89lg.info('Done reading backfiles.txt')
 90