added get executable mthode to util

This commit is contained in:
Tuncay ÇOLAK 2020-03-29 17:00:12 +03:00
parent c54b0ffc7b
commit 31cb317b8c

View file

@ -138,7 +138,7 @@ class Util:
@staticmethod @staticmethod
def change_owner(full_path, user_name=None, group_name=None): def change_owner(full_path, user_name=None, group_name=None):
"" try: try:
shutil.chown(full_path, user_name, group_name) shutil.chown(full_path, user_name, group_name)
except: except:
raise raise