]> git.phdru.name Git - m_lib.git/blobdiff - m_lib/m_shutil.py
Replace <> with != for Py3 compatibility
[m_lib.git] / m_lib / m_shutil.py
index 10e5ebf552e4eaaf25f1fc2fe59b9ffd0e498704..7546b0d3c17cf61cae3e185ce45743c1366b6e2c 100755 (executable)
@@ -1,10 +1,10 @@
 #! /usr/bin/env python
-"""Broytman's shell utilities. Additional to shutil.py (standard library module)
-
-   Written by Broytman, Oct 1997. Copyright (C) 1997 PhiloSoft Design.
+"""
+Shell utilities. Additional to shutil.py (standard library module).
 """
 
 
+from __future__ import print_function
 import os, string
 
 
@@ -18,11 +18,11 @@ def mkhier(path): # Python implementation of UNIX' mkdir -p /path/to/dir
       raise mkhier_error, "`%s' is file" % path
 
    list_dirs = string.split(path, os.sep)
-   #print list_dirs
+   #print(list_dirs)
    for i in range(0, len(list_dirs)):
       new_path = string.join(list_dirs[0:i+1], os.sep)
-      if (new_path <> '') and (not os.path.exists(new_path)):
-         #print "Making", new_path
+      if (new_path != '') and (not os.path.exists(new_path)):
+         #print("Making", new_path)
          os.mkdir(new_path)