Browse Source

Removed a code comment that is no longer relevant.

BassThatHertz 6 năm trước cách đây
mục cha
commit
20a2fdc27a
1 tập tin đã thay đổi với 0 bổ sung3 xóa
  1. 0 3
      pyinstalive/organize.py

+ 0 - 3
pyinstalive/organize.py

@@ -53,9 +53,6 @@ def organize_videos():
             # Change the filenames to the format "[date] [time] [username] [live/replay].mp4"
             os.rename(filename, date + " " + username + " [" + time_from_unix_timestamp + "] " + live_or_replay)
 
-            # Note: I added a space before ".mp4" as this will separate the username from ".mp4"
-            # when I do .split() on line 67. 
-
         # Now that the files have been renamed, we need to rescan the files in the directory.
         current_dir_files = os.listdir()