diff --git a/fsrimagevideoupscaler-cli.py b/fsrimagevideoupscaler-cli.py index 90eab1f..c63f050 100644 --- a/fsrimagevideoupscaler-cli.py +++ b/fsrimagevideoupscaler-cli.py @@ -25,7 +25,7 @@ go = True; if __name__ == '__main__': multiprocessing.freeze_support(); - if ( os.path.exists( args.outputfile ) ): + if ( os.path.exists( args.outputfile ) ): if ( input( 'File already exists. Do you want to replace it? (y/n) ' ).lower() == 'y' ): go = True os.remove( args.outputfile ); @@ -46,4 +46,4 @@ if __name__ == '__main__': if ( args.threads != None ): handler.handler( 'bin/lib/FidelityFX_CLI.exe', args.inputfile, 'custom', '2x', args.outputfile, threads=int( args.threads ) ); else: - handler.handler( 'bin/lib/FidelityFX_CLI.exe', args.inputfile, 'custom', '2x', args.outputfile ) \ No newline at end of file + handler.handler( 'bin/lib/FidelityFX_CLI.exe', args.inputfile, 'custom', '2x', args.outputfile )