Skip to content

Commit

Permalink
Merge pull request #212 from Slezhuk/master
Browse files Browse the repository at this point in the history
Fixed python3 incopabilities.
  • Loading branch information
jordansissel committed May 7, 2012
2 parents bb7d631 + 04510fa commit 0f4fc5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/fpm/package/pyfpm/get_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ def run(self):

#print json.dumps(data, indent=2)
try:
print json.dumps(data, indent=2)
except AttributeError, e:
print(json.dumps(data, indent=2))
except AttributeError as e:
# For Python 2.5 and Debian's python-json
print json.write(data)
print(json.write(data))
# def run
# class list_dependencies
2 changes: 1 addition & 1 deletion lib/fpm/package/python.rb
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def install_to_staging(setup_py)
# Ask python where libraries are installed to.
# This line is unusually long because I don't have a shorter way to express it.
attributes[:python_install_lib] = %x{
#{attributes[:python_bin]} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()'
#{attributes[:python_bin]} -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())'
}.chomp
@logger.info("Setting default :python_install_lib attribute",
:value => attributes[:python_install_lib])
Expand Down

0 comments on commit 0f4fc5d

Please sign in to comment.