~ubuntu-branches/ubuntu/utopic/inkscape/utopic-proposed

« back to all changes in this revision

Viewing changes to share/extensions/scour.inkscape.py

Tags: upstream-0.48.0
ImportĀ upstreamĀ versionĀ 0.48.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 
44
44
 
45
45
    def effect(self):   
46
 
        input = file(self.args[0], "r")
 
46
        input = file(sys.argv[12], "r")
47
47
        sys.stdout.write(scourString(input.read(), self.options).encode("UTF-8"))
48
48
        input.close()
49
49
        sys.stdout.close()