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

Side by Side Diff: third_party/google-endpoints/setuptools/command/register.py

Issue 2666783008: Add google-endpoints to third_party/. (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 import distutils.command.register as orig
2
3
4 class register(orig.register):
5 __doc__ = orig.register.__doc__
6
7 def run(self):
8 # Make sure that we are using valid current name/version info
9 self.run_command('egg_info')
10 orig.register.run(self)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698