Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ceiba_dl/vfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def fetch(self):

student_rows = student_page.xpath('//div[@id="sect_cont"]/table/tr')
# NTNU and NTUST students may have less rows
#assert len(student_rows) == 12
assert len(student_rows) <= 12
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

這看起來是個 fixup commit,應該直接併入上一個 commit。


student_file = JSONFile(self.vfs, self)
student_filename = '{}.json'.format(self._account, sn)
Expand Down