Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkaufman committed Jan 25, 2021
1 parent 5c40486 commit 01740ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def run_backing_track() -> None:
state.metronome_on = True
backfill_metronome()
elif state.requested_track in tracks:
with wave.open(os.path.join(AUDIO_DIR, state.requested_track)) as inf:
with wave.open(os.path.join(util.AUDIO_DIR, state.requested_track)) as inf:
if inf.getnchannels() != 1:
raise Exception(
"wrong number of channels on %s" % state.requested_track)
Expand Down

0 comments on commit 01740ab

Please sign in to comment.