File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
seleniumbase/console_scripts Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ def invalid_run_command(msg=None):
43
43
44
44
def main ():
45
45
colorama .init (autoreset = True )
46
+ c1 = colorama .Fore .BLUE + colorama .Back .LIGHTCYAN_EX
46
47
c5 = colorama .Fore .RED + colorama .Back .LIGHTYELLOW_EX
47
48
cr = colorama .Style .RESET_ALL
48
49
error_msg = None
@@ -355,8 +356,10 @@ def main():
355
356
file = codecs .open (file_path , "w+" , "utf-8" )
356
357
file .writelines ("\r \n " .join (data ))
357
358
file .close ()
358
- print ('''\n * Directory "%s" was created with config files '''
359
- '''and sample tests! *\n ''' % dir_name )
359
+ success = (
360
+ '\n ' + c1 + '* Directory "' + dir_name + '" was created '
361
+ 'with config files and sample tests! *' + cr + '\n ' )
362
+ print (success )
360
363
361
364
362
365
if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments