Salome HOME
[PATCH] Minor error on warning msg
[modules/kernel.git] / bin / appliskel / getAppliPath.py
index 6728839b3e51c19cf3b8244fb37797d947601945..460f5c592dc4a8f5890c212b5f5636f6cc1bc5b2 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #  -*- coding: iso-8859-1 -*-
-# Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
 #
 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -36,7 +36,7 @@ def relpath(target, base):
     """
     target=target.split(os.path.sep)
     base=base.split(os.path.sep)
-    for i in xrange(len(base)):
+    for i in range(len(base)):
       if base[i] != target[i]:
         i=i-1
         #not in base
@@ -61,5 +61,5 @@ if __name__ == "__main__":
         applipath = relpath(os.path.realpath(os.path.dirname(__file__)),os.path.realpath(os.getenv('HOME')))
     else:
         applipath = get_appli_path()
-    print applipath
+    print(applipath)
 #