# git show -1
commit dee1c0cb4f7e4621c95469b050b37da14709f44b
Author: Ryan Harper <ryan.harper@canonical.com>
Date: Thu Apr 27 12:39:02 2017 +0000
Fix argparse requirement for py2.7
diff --git a/requirements.txt b/requirements.txt
index 0c4951f..0e31680 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -28,7 +28,8 @@ configobj>=5.0.2
pyyaml
# The new main entrypoint uses argparse instead of optparse
-argparse
+# available by default in py2.7 and newer
+# argparse
# Requests handles ssl correctly!
requests