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

Unified Diff: utils/pub/sdk.dart

Issue 12047096: Get rid of RootSource. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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: utils/pub/sdk.dart
diff --git a/utils/pub/sdk.dart b/utils/pub/sdk.dart
index 0365aab30e398ec9fb52a8065c57aac624116b75..0e47acd867b5a753eb17c1d87219bb040a828a86 100644
--- a/utils/pub/sdk.dart
+++ b/utils/pub/sdk.dart
@@ -45,7 +45,7 @@ Version _getVersion() {
var match = _versionPattern.firstMatch(version);
if (match == null) {
throw new FormatException("The Dart SDK's 'version' file was not in a "
- "format pub could recognize. Found: $revision");
+ "format pub could recognize. Found: $version");
}
var build = match[4];

Powered by Google App Engine
This is Rietveld 408576698