mirror of https://github.com/morpheus65535/bazarr
no log: pep8 fixes
This commit is contained in:
parent
9c1397a14d
commit
33ff7948e8
|
@ -16,7 +16,7 @@ class SystemStatus(Resource):
|
|||
@authenticate
|
||||
def get(self):
|
||||
package_version = ''
|
||||
if 'BAZARR_PACKAGE_VERSION' in os.environ:
|
||||
if 'BAZARR_PACKAGE_VERSION' in os.environ:
|
||||
package_version = os.environ['BAZARR_PACKAGE_VERSION']
|
||||
if 'BAZARR_PACKAGE_AUTHOR' in os.environ and os.environ['BAZARR_PACKAGE_AUTHOR'] != '':
|
||||
package_version = f'{package_version} by {os.environ["BAZARR_PACKAGE_AUTHOR"]}'
|
||||
|
|
|
@ -74,7 +74,7 @@ def backup_to_zip():
|
|||
if database_backup_file:
|
||||
backupZip.write(database_backup_file, 'bazarr.db')
|
||||
else:
|
||||
logging.debug(f'Database file is not included in backup. See previous exception')
|
||||
logging.debug('Database file is not included in backup. See previous exception')
|
||||
backupZip.write(config_file, 'config.ini')
|
||||
|
||||
try:
|
||||
|
|
|
@ -124,7 +124,7 @@ def get_providers():
|
|||
|
||||
|
||||
_FFPROBE_BINARY = get_binary("ffprobe")
|
||||
_FFMPEG_BINARY= get_binary("ffmpeg")
|
||||
_FFMPEG_BINARY = get_binary("ffmpeg")
|
||||
|
||||
|
||||
def get_providers_auth():
|
||||
|
|
Loading…
Reference in New Issue