Skip to content

Commit

Permalink
Merge branch 'release/0.1.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
brianbruggeman committed Feb 22, 2016
2 parents dd4ea65 + 8729577 commit 883ed74
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions glfw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

###############################################################################
__title__ = 'glfw-cffi'
__version__ = '0.1.10'
__version__ = '0.1.11'
__author__ = 'Brian Bruggeman'
__email__ = 'brian.m.bruggeman@gmail.com'
__license__ = 'Apache 2.0'
Expand Down Expand Up @@ -294,8 +294,9 @@ def _load_library(library_path, ffi):

def _find_library(library_name, ffi, path=None):
'''Attempts to find and and load library name given path'''
path = os.path.abspath(os.getcwd()) if path is None else os.path.abspath(path)
path = os.getcwd() if path is None else path
path = path.strip('"')
path = os.path.abspath(path)
# Try three different methods

# First try loading the path
Expand Down

0 comments on commit 883ed74

Please sign in to comment.