Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions tools/check_license.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

# Copyright 2015 Samsung Electronics Co., Ltd.
# Copyright 2015-2016 Samsung Electronics Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -17,7 +17,7 @@
import re;

license = re.compile(
u"""(#|//|\*) Copyright 2015 Samsung Electronics Co., Ltd.
u"""(#|//|\*) Copyright \d{4}(-\d{4})? Samsung Electronics Co., Ltd.
\s?\\1
\s?\\1 Licensed under the Apache License, Version 2.0 \(the "License"\);
\s?\\1 you may not use this file except in compliance with the License.
Expand Down