summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'WebappConfig/worker.py')
-rw-r--r--WebappConfig/worker.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebappConfig/worker.py b/WebappConfig/worker.py
index a5ee172..0841f4a 100644
--- a/WebappConfig/worker.py
+++ b/WebappConfig/worker.py
@@ -500,7 +500,7 @@ class WebappAdd:
my_contenttype = 'sym'
- except Exception, e:
+ except Exception as e:
if self.__v:
OUT.warn('Failed to softlink (' + str(e) + ')')
@@ -515,7 +515,7 @@ class WebappAdd:
my_contenttype = 'sym'
- except Exception, e:
+ except Exception as e:
if self.__v:
OUT.warn('Failed copy symlink (' + str(e) + ')')
@@ -530,7 +530,7 @@ class WebappAdd:
my_contenttype = 'file'
- except Exception, e:
+ except Exception as e:
if self.__v:
OUT.warn('Failed to hardlink (' + str(e) + ')')