Construct from filename. Parameters ---------- filename: str Path to a file. This file's copyright information will be examined and possibly updated by using the helper methods below.
(self, filename)
| 36 | EXCLUDE_FOLDERS = ['./modules/synctex/'] |
| 37 | |
| 38 | def __init__(self, filename): |
| 39 | """Construct from filename. |
| 40 | |
| 41 | Parameters |
| 42 | ---------- |
| 43 | filename: str |
| 44 | Path to a file. This file's copyright information will be |
| 45 | examined and possibly updated by using the helper methods |
| 46 | below. |
| 47 | |
| 48 | """ |
| 49 | self.filename = filename |
| 50 | self.log = None |
| 51 | |
| 52 | @property |
| 53 | def year_range_str(self): |