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

Unified Diff: appengine/components/tools/gae.py

Issue 2898293002: gae.py: Remove support for MVMs (they are deprecated), simplify code a bit. (Closed)
Patch Set: nit 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
« no previous file with comments | « appengine/components/tool_support/gae_sdk_utils.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/components/tools/gae.py
diff --git a/appengine/components/tools/gae.py b/appengine/components/tools/gae.py
index 7a77cf6e9b9620b92b7a7a193f8fb0453138dbd4..75e751b46144d61a4b283d13d42e381190e20a91 100755
--- a/appengine/components/tools/gae.py
+++ b/appengine/components/tools/gae.py
@@ -509,9 +509,7 @@ def main(args):
dispatcher = subcommand.CommandDispatcher(__name__)
try:
return dispatcher.execute(OptionParser(app_dir), args)
- except (
- gae_sdk_utils.BadEnvironmentConfig,
- gae_sdk_utils.LoginRequiredError) as e:
+ except gae_sdk_utils.Error as e:
print >> sys.stderr, str(e)
return 1
except KeyboardInterrupt:
« no previous file with comments | « appengine/components/tool_support/gae_sdk_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698