Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
There was an underscore missing in libdirs, so the argument names were inconsistent
  • Loading branch information
eikehmueller committed Apr 28, 2016
1 parent 1fb5aa4 commit 6cfa288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyop2/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3771,7 +3771,7 @@ class Kernel(Cached):
@classmethod
@validate_type(('name', str, NameTypeError))
def _cache_key(cls, code, name, opts={}, include_dirs=[], headers=[],
user_code="", cpp=False, libs=[], libdirs=[]):
user_code="", cpp=False, libs=[], lib_dirs=[]):
# Both code and name are relevant since there might be multiple kernels
# extracting different functions from the same code
# Also include the PyOP2 version, since the Kernel class might change
Expand Down

0 comments on commit 6cfa288

Please sign in to comment.