Skip to content

Commit 7d40022

Browse files
committed
removed old file name reference in comments
1 parent a8a1593 commit 7d40022

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/FileUpdaterPDF.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"""
1515

1616

17-
class HerokuFileUpdaterPDF(PatternMatchingEventHandler):
17+
class FileUpdaterPDF(PatternMatchingEventHandler):
1818
# Change this to include other specific extensions.
1919
patterns = ["*.pdf"]
2020

2121
def __init__(self, author_name, author_email, commit_message, git_directory, destinations):
2222
"""
23-
Construct a HerokuFileUpdaterPDF.
23+
Construct a FileUpdaterPDF.
2424
"""
25-
super(HerokuFileUpdaterPDF, self).__init__()
25+
super(FileUpdaterPDF, self).__init__()
2626
self.git_directory = git_directory
2727
self.destinations = destinations
2828
self.author_name = author_name
@@ -101,9 +101,9 @@ def main():
101101
source_path = sys.argv[5]
102102
destinations = sys.argv[6:]
103103

104-
# Run WatchDog with HerokuFileUpdaterPDF.
104+
# Run WatchDog with FileUpdaterPDF.
105105
observer = Observer()
106-
observer.schedule(HerokuFileUpdaterPDF(
106+
observer.schedule(FileUpdaterPDF(
107107
author_name, author_email, commit_message, git_directory, destinations), source_path)
108108
observer.start()
109109

0 commit comments

Comments
 (0)