X-Git-Url: https://git.phdru.name/?p=m_lib.git;a=blobdiff_plain;f=m_lib%2Fm_path.py;h=3cc57c5f1b7283fdf9538ff14a73f6b1609f0124;hp=0131289c1afdbf1b9a7a7ffb31187c0b185c73b7;hb=fb3af94919a9ee18ba1c35f927f19837f057fa1f;hpb=9a523766e02fc3c5d1df4550385a604dca8e6e80 diff --git a/m_lib/m_path.py b/m_lib/m_path.py index 0131289..3cc57c5 100755 --- a/m_lib/m_path.py +++ b/m_lib/m_path.py @@ -4,6 +4,7 @@ # useful function(s) for manipulating paths # +from __future__ import print_function _homedir = None @@ -16,7 +17,7 @@ def get_homedir(): def test(): - print get_homedir() + print(get_homedir()) if __name__ == "__main__":