| Index: third_party/libadblockplus_common/delete_dir.py |
| diff --git a/third_party/libadblockplus_common/delete_dir.py b/third_party/libadblockplus_common/delete_dir.py |
| index a349a6aa1e272533cd0d8222a2d931645c339e19..a12303048fd0b04e68a73e62a219876920f592c9 100644 |
| --- a/third_party/libadblockplus_common/delete_dir.py |
| +++ b/third_party/libadblockplus_common/delete_dir.py |
| @@ -11,9 +11,8 @@ def main(argv): |
| return 0 |
| -if '__main__' == __name__: |
| +if __name__ == '__main__': |
| try: |
| sys.exit(main(sys.argv[1:])) |
| except KeyboardInterrupt: |
| - sys.stderr.write('interrupted\n') |
| - sys.exit(1) |
| + sys.exit('interrupted') |