summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2012-06-16 07:32:18 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2012-06-16 07:32:18 -0700
commit5c34aa4ec384c25056b76e71cae9afabd00f793b (patch)
tree4a924e10585aabcecdf553e7db1e8f363148404b
parent450261a1fcf1f8929a2f7a25c2c278ba40689289 (diff)
downloadvyos-cloud-init-5c34aa4ec384c25056b76e71cae9afabd00f793b.tar.gz
vyos-cloud-init-5c34aa4ec384c25056b76e71cae9afabd00f793b.zip
Add the running of 2to3 via the makefile.
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0a73f987..783ebd76 100644
--- a/Makefile
+++ b/Makefile
@@ -12,5 +12,8 @@ pyflakes:
test:
nosetests tests/unittests/
-.PHONY: test pylint pyflakes
+2to3:
+ 2to3 $(PY_FILES)
+
+.PHONY: test pylint pyflakes 2to3