Skip to content

Commit ae43124

Browse files
committed
Fix harmless typos
1 parent 673ea93 commit ae43124

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ghpythonremote/_configure_ironpython_installation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@
7474
for file_rel_path in copy_pair[1]:
7575
source = os.path.join(source_dir_path, *file_rel_path.split("/"))
7676
copy(source, dest)
77-
logging.info("Copied example files to {!s}".format(dest_dir_path))
77+
logging.info(" Copied example files to {!s}".format(dest_dir_path))

ghpythonremote/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def check_macos_ironpython_installation(ironpython_path, rhino_version):
477477
# Just check that the ghpythonlib folder is here and install in scripts
478478
ghpythonlib_path = os.path.join(ironpython_path, "lib", "ghpythonlib")
479479

480-
if not os.path.isfile(ghpythonlib_path):
480+
if not os.path.isdir(ghpythonlib_path):
481481
logger.warning(
482482
" No ghpythonlib folder found in {!s}.\n".format(
483483
os.path.join(ironpython_path, "lib")

0 commit comments

Comments
 (0)