Skip to content

Commit 5639c06

Browse files
committed
Fix regression
1 parent ff1faf9 commit 5639c06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tools/deployment-cli-tools/ch_cli_tools

tools/deployment-cli-tools/ch_cli_tools/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ def to_python_module(name):
411411
@cache
412412
def guess_build_dependencies_from_dockerfile(filename):
413413
dependencies = []
414-
if not "Dockerfile" in filename:
414+
if "Dockerfile" not in str(filename):
415415
filename = join(filename, "Dockerfile")
416416
if not os.path.exists(filename):
417417
return dependencies

0 commit comments

Comments
 (0)