Remove superfluous semicolons
diff --git a/Lib/multifile.py b/Lib/multifile.py
index 54de947..0b51b55 100644
--- a/Lib/multifile.py
+++ b/Lib/multifile.py
@@ -86,7 +86,7 @@
 			return line
 		else:
 			# Ignore trailing whitespace on marker lines 
-			k = len(line) - 1;
+			k = len(line) - 1
 			while line[k] in string.whitespace:
 				k = k - 1
 			marker = line[:k+1]