summaryrefslogtreecommitdiff
blob: c3e0a0c9f856a3863803690438149db23a791f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--- a/jack_functions.py
+++ b/jack_functions.py
@@ -219,9 +219,9 @@
     ff = blocks % CDDA_BLOCKS_PER_SECOND
     return mm, ss, ff, blocks

-def starts_with(str, with):
-    "checks whether str starts with with"
-    return str[0:len(with)] == with
+def starts_with(str, withstr):
+    "checks whether str starts with withstr"
+    return str[0:len(withstr)] == withstr