Skip to content

Commit 92a5d91

Browse files
committed
Fix dark text on dark background issue ("sbase mkdir DIR")
1 parent 58c628f commit 92a5d91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

seleniumbase/console_scripts/sb_mkdir.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def main():
297297
data.append(" ├── pytest.ini")
298298
data.append(" ├── requirements.txt")
299299
data.append(" └── setup.cfg")
300-
file_path = "%s/%s" % (dir_name, "outline.txt")
300+
file_path = "%s/%s" % (dir_name, "outline.rst")
301301
file = codecs.open(file_path, "w+", "utf-8")
302302
file.writelines("\r\n".join(data))
303303
file.close()
@@ -696,7 +696,7 @@ def main():
696696
data.append(" ├── google_test.py")
697697
data.append(" ├── sb_swag_test.py")
698698
data.append(" └── swag_labs_test.py")
699-
file_path = "%s/%s" % (dir_name, "outline.txt")
699+
file_path = "%s/%s" % (dir_name, "outline.rst")
700700
file = codecs.open(file_path, "w+", "utf-8")
701701
file.writelines("\r\n".join(data))
702702
file.close()

0 commit comments

Comments
 (0)