Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1675)

Unified Diff: third_party/libaddressinput/chromium/tools/update-strings.py

Issue 2886173002: Moves address_input_strings.grdp from chrome to third_party/libaddressinput (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/libaddressinput/chromium/tools/update-strings.py
diff --git a/third_party/libaddressinput/chromium/tools/update-strings.py b/third_party/libaddressinput/chromium/tools/update-strings.py
index 44e8351087f907b13f91b3829e5be3f76ef70428..c60e5dc0b8b09c27636507403b9980b834b9dfbc 100755
--- a/third_party/libaddressinput/chromium/tools/update-strings.py
+++ b/third_party/libaddressinput/chromium/tools/update-strings.py
@@ -26,8 +26,7 @@ script_dir = os.path.dirname(os.path.realpath(__file__))
from_file = os.path.abspath(os.path.join(
script_dir, os.pardir, os.pardir, 'src', 'cpp', 'res', 'messages.grdp'))
to_file = os.path.abspath(os.path.join(
- script_dir, os.pardir, os.pardir, os.pardir, os.pardir, 'chrome', 'app',
- 'address_input_strings.grdp'))
+ script_dir, os.pardir, os.pardir, 'address_input_strings.grdp'))
with open(from_file, 'r') as source:
with open(to_file, 'w') as destination:

Powered by Google App Engine
This is Rietveld 408576698