diff options
| -rwxr-xr-x | share/extensions/webslicer_export.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/webslicer_export.py b/share/extensions/webslicer_export.py index 5b16ea2f5..c50cbcc32 100755 --- a/share/extensions/webslicer_export.py +++ b/share/extensions/webslicer_export.py @@ -54,8 +54,8 @@ class WebSlicer_Export(WebSlicer_Effect): def validate_inputs(self): # The user must supply a directory to export: if is_empty( self.options.dir ): - inkex.errormsg(_('You must to give a directory to export the slices.')) - return {'error':'You must to give a directory to export the slices.'} + inkex.errormsg(_('You must give a directory to export the slices.')) + return {'error':'You must give a directory to export the slices.'} # No directory separator at the path end: if self.options.dir[-1] == '/' or self.options.dir[-1] == '\\': self.options.dir = self.options.dir[0:-1] |
