Skip to content

Commit

Permalink
Merge pull request Tencent#83 from 5peak2me/dev
Browse files Browse the repository at this point in the history
fix python3 error
  • Loading branch information
garryyan authored Jan 9, 2017
2 parents dfebb49 + 73dc5b2 commit 4895336
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mars/libraries/build_android.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def main():
shutil.rmtree(SO_CACHE_DIR)

for i in range(0, len(archs)):
print "build %s" %(archs[i])
print ("build %s" %(archs[i]))

arch = archs[i]

Expand Down
4 changes: 2 additions & 2 deletions mars/libraries/mars_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def parse_as_git():

def gen_revision_file(save_path, tag):
now_path = os.path.dirname(os.path.abspath(__file__))
print now_path
print (now_path)

# TRY AS SVN
revision, path, url = parse_as_svn()
Expand Down Expand Up @@ -162,7 +162,7 @@ def gen_revision_file(save_path, tag):

output += html

print ''.join(output.splitlines())
print (''.join(output.splitlines()))

def get_revision(path):

Expand Down

0 comments on commit 4895336

Please sign in to comment.