Skip to content

Commit a00720b

Browse files
committed
Update an error message
1 parent 47a947d commit a00720b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

seleniumbase/console_scripts/sb_mkdir.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ def main():
5858
'Directory name must not include slashes ("/", "\\")!')
5959
elif os.path.exists(os.getcwd() + '/' + dir_name):
6060
error_msg = (
61-
'Directory "%s" already exists in the current path!\n'
62-
'' % dir_name)
61+
'Directory "%s" already exists in the current path!' % dir_name)
6362
if error_msg:
6463
error_msg = c5 + error_msg + cr
6564
invalid_run_command(error_msg)

0 commit comments

Comments
 (0)