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

Unified Diff: visual_studio/NativeClientVSAddIn/InstallerResources/xml_patch.py

Issue 14122017: [VS Addin] Add visual studio 2012 support (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 6 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: visual_studio/NativeClientVSAddIn/InstallerResources/xml_patch.py
diff --git a/visual_studio/NativeClientVSAddIn/InstallerResources/xml_patch.py b/visual_studio/NativeClientVSAddIn/InstallerResources/xml_patch.py
index 56655005cd67589461655fb5ca40d2e651aed60b..c53a94de06033e9576ddc0f91606822b45cf659b 100644
--- a/visual_studio/NativeClientVSAddIn/InstallerResources/xml_patch.py
+++ b/visual_studio/NativeClientVSAddIn/InstallerResources/xml_patch.py
@@ -139,7 +139,7 @@ def MergeElement(source_elem, patch_elem):
if find_target is not None:
raise Exception('Find operation never matched:' + find_target.tag)
elif len(remove_targets) != 0:
- raise Exception('Remove operation never matched: ' + remove_targets)
+ raise Exception('Remove operation never matched: ' + str(remove_targets))
# We may have more add operations after source has run empty:
while patch_index < len(patch_children):

Powered by Google App Engine
This is Rietveld 408576698