Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
Python3 compatibility fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Nordhausen committed Sep 22, 2015
1 parent fd47852 commit 3fc0cb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import print_function, absolute_import, unicode_literals, division
from pybuilder.core import use_plugin, init, task, depends, Author

use_plugin("python.core")
Expand Down Expand Up @@ -37,4 +38,4 @@ def set_properties(project):
@task
@depends('prepare')
def build_directory(project):
print project.expand_path("$dir_dist")
print(project.expand_path("$dir_dist"))

0 comments on commit 3fc0cb9

Please sign in to comment.