Skip to content

Commit b168114

Browse files
authored
Merge pull request #1136 from seleniumbase/fix-dark-text-on-dark-background-issue
Fix dark text on dark background issue during "sbase mkdir DIR"
2 parents 58c628f + ed488fc commit b168114

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "2.3.0"
2+
__version__ = "2.3.1"

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)