Skip to content

Commit bef7819

Browse files
committed
Merged in [9901] from rcross@amsl.com:
Fix matching audio file names with rooms. - Legacy-Id: 9927 Note: SVN reference [9901] has been migrated to Git commit ce250e1
2 parents ab8d018 + ce250e1 commit bef7819

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/secr/proceedings/proc_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def check_audio_files(group,meeting):
4545
continue
4646
room = timeslot.location.name.lower()
4747
room = room.replace(' ','')
48-
room = room.replace('/','')
48+
room = room.replace('/','_')
4949
time = timeslot.time.strftime("%Y%m%d-%H%M")
5050
filename = 'ietf{}-{}-{}-*'.format(meeting.number,room,time)
5151
path = os.path.join(settings.MEETING_RECORDINGS_DIR,'ietf{}'.format(meeting.number),filename)

0 commit comments

Comments
 (0)