Skip to content

Commit

Permalink
Fixed relpath exception
Browse files Browse the repository at this point in the history
  • Loading branch information
andot committed Dec 10, 2018
1 parent 5237230 commit 35bd893
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xxtea/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# encoding: utf-8
from cffi import FFI
import sys
from os.path import join, relpath, dirname
from os.path import join, dirname

__PATH = dirname(__file__)
__SOURCES = [relpath(join(__PATH, 'xxtea.c'))]
__SOURCES = [join(__PATH, 'xxtea.c')]

ffi = FFI()
ffi.cdef('''
Expand Down

0 comments on commit 35bd893

Please sign in to comment.