Ubuntu Pastebin

Paste from rr at Thu, 27 Apr 2017 14:18:29 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
# 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
Download as text