mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 07:38:11 +00:00
Merge pull request #640 from ret2libc/fix_install3
bindings/python: fix install3
This commit is contained in:
commit
fb4dc10fe9
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# Python binding for Unicorn engine. Nguyen Anh Quynh <aquynh@gmail.com>
|
||||
|
||||
from __future__ import print_function
|
||||
import glob
|
||||
import os
|
||||
import shutil
|
||||
|
@ -162,7 +163,7 @@ try:
|
|||
|
||||
cmdclass['develop'] = custom_develop
|
||||
except ImportError:
|
||||
print "Proper 'develop' support unavailable."
|
||||
print("Proper 'develop' support unavailable.")
|
||||
|
||||
def join_all(src, files):
|
||||
return tuple(os.path.join(src, f) for f in files)
|
||||
|
|
Loading…
Reference in a new issue