|
116 | 116 | build_id_patch = build_id_patch + ".0" |
117 | 117 | pywin32_version = "%d.%d.%s" % (sys.version_info[0], sys.version_info[1], |
118 | 118 | build_id_patch) |
119 | | -print(("Building pywin32", pywin32_version)) |
| 119 | +print("Building pywin32", pywin32_version) |
120 | 120 |
|
121 | 121 | try: |
122 | 122 | this_file = __file__ |
@@ -430,7 +430,7 @@ def run(self): |
430 | 430 | f.write("%s\n" % build_id) |
431 | 431 | f.close() |
432 | 432 | except EnvironmentError as why: |
433 | | - print(("Failed to open '%s': %s" % (ver_fname, why))) |
| 433 | + print("Failed to open '%s': %s" % (ver_fname, why)) |
434 | 434 |
|
435 | 435 |
|
436 | 436 | class build_scintilla(Command): |
@@ -646,7 +646,7 @@ def _copy_mfc(self): |
646 | 646 | for f in mfc_files: |
647 | 647 | self.copy_file(os.path.join(mfc_dir, f), target_dir) |
648 | 648 | except (EnvironmentError, RuntimeError) as exc: |
649 | | - print(("Can't find an installed VC for the MFC DLLs:", exc)) |
| 649 | + print("Can't find an installed VC for the MFC DLLs:", exc) |
650 | 650 |
|
651 | 651 | def get_ext_filename(self, name): |
652 | 652 | # The pywintypes and pythoncom extensions have special names |
@@ -775,7 +775,7 @@ def finalize_options(self): |
775 | 775 | if self.install_dir is None: |
776 | 776 | installobj = self.distribution.get_command_obj('install') |
777 | 777 | self.install_dir = installobj.install_lib |
778 | | - print(('Installing data files to %s' % self.install_dir)) |
| 778 | + print('Installing data files to %s' % self.install_dir) |
779 | 779 | install_data.finalize_options(self) |
780 | 780 |
|
781 | 781 | # TODO: Find out why these files exist |
|
0 commit comments