Sfoglia il codice sorgente

fix the other argparse import also

Thomas Waldmann 10 anni fa
parent
commit
bc2cfdfc59
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  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
 from collections import namedtuple
 from functools import wraps