fix example for unicode

This commit is contained in:
Thomas Vander Stichele
2009-12-09 17:34:02 +00:00
parent 217bc560da
commit fa17065ae3

View File

@@ -49,7 +49,7 @@ path = 'test.flac'
start = 0
end = -1
try:
path = sys.argv[1]
path = unicode(sys.argv[1])
start = int(sys.argv[2])
end = int(sys.argv[3])
except IndexError: