Skip to content

Commit 0136c37

Browse files
committed
👹 Feed the hobgoblins (delint).
1 parent 7a321f8 commit 0136c37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎distutils/tests/test_unixccompiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def gcv(v):
189189
sysconfig.get_config_var = gcv
190190
assert self.cc.rpath_foo() == [
191191
'-Wl,--enable-new-dtags',
192-
'-Wl,-rpath,/foo'
192+
'-Wl,-rpath,/foo',
193193
]
194194

195195
# non-GCC GNULD

‎distutils/unixccompiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def runtime_library_dir_option(self, dir):
316316
return [
317317
# Force RUNPATH instead of RPATH
318318
"-Wl,--enable-new-dtags",
319-
"-Wl,-rpath," + dir
319+
"-Wl,-rpath," + dir,
320320
]
321321
else:
322322
return "-Wl,-R" + dir

0 commit comments

Comments
 (0)