Skip to content

Commit e1b462b

Browse files
committed
Fix Python 3: syntax error "Missing parentheses in call to 'print'"
1 parent b911772 commit e1b462b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/sparktestsupport/modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def __init__(self, name, dependencies, source_file_regexes, build_profile_flags=
8080
environ.get("SUPPORTED_HADOOP_PROFILE") == hadoop_version):
8181
all_modules.append(self)
8282
else:
83-
print "[info] Skip unsupported module: " + name
83+
print ("[info] Skip unsupported module: " + name)
8484

8585
def contains_file(self, filename):
8686
return any(re.match(p, filename) for p in self.source_file_prefixes)

0 commit comments

Comments
 (0)