Skip to content

Commit 9389f40

Browse files
committed
Remove print statement
1 parent 566e59e commit 9389f40

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "confspawn"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
description = "Easily build configuration files from templates."
55
authors = ["Tip ten Brink <75669206+tiptenbrink@users.noreply.github.com>"]
66
readme = "README.md"

src/confspawn/spawn.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def spawn_write(config_path: Path, template_path: Path, target_path: Path, recur
165165
defaults to 'confspawn_' but can be set using CONFSPAWN_PREFIX env
166166
var or directly in this function (the latter takes precedence).
167167
"""
168-
print(recurse)
168+
169169
env = Environment(
170170
loader=SpawnLoader(template_path, recurse=recurse),
171171
autoescape=select_autoescape()

0 commit comments

Comments
 (0)