We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8c2db9 commit 8dd2b66Copy full SHA for 8dd2b66
2 files changed
.gitignore
@@ -3,5 +3,11 @@ venv/
3
__pycache__/
4
*.pyc
5
6
-test/*-fresh.html
7
-test/csskrt*
+# Setuptools distribution folder.
+/dist/
8
+
9
+# Python egg metadata, regenerated from source files by setuptools.
10
+/*.egg-info
11
+/*.egg
12
13
+test/output/*
csskrt/csskrt.py
@@ -172,7 +172,7 @@ def output(self) -> NoReturn:
172
file = os.path.basename(self.file_path)
173
file_name, ext = os.path.splitext(file)
174
175
- new_file_name = os.path.join(folder, 'csskrt_' + file_name + ext)
+ new_file_name = os.path.join(folder, 'output/csskrt_' + file_name + ext)
176
with open(new_file_name, 'w') as out_file:
177
if self.pretty_print:
178
out_file.write(str(self.soup))
0 commit comments