Skip to content

Commit ca306d4

Browse files
committed
fix gendiff.scripts.gendiff.py
1 parent cdd0557 commit ca306d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gendiff/scripts/gendiff.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
from gendiff.gendiff_help import parse
22
from gendiff.generate import generate_diff
33

4+
45
def main():
56
args = parse()
67
print(
78
generate_diff(args.first_file, args.second_file)
89
)
910

1011

11-
12-
if __name__=='__main__':
12+
if __name__ == '__main__':
1313
main()

0 commit comments

Comments
 (0)