Browse Source

fix the other argparse import also

Thomas Waldmann 9 years ago
parent
commit
bc2cfdfc59
1 changed files with 3 additions and 1 deletions
  1. 3 1
      borg/helpers.py

+ 3 - 1
borg/helpers.py

@@ -1,4 +1,6 @@
-import argparse
+from .support import argparse  # see support/__init__.py docstring
+                               # DEPRECATED - remove after requiring py 3.4
+
 import binascii
 import binascii
 from collections import namedtuple
 from collections import namedtuple
 from functools import wraps
 from functools import wraps