]> arthur.barton.de Git - bup.git/blobdiff - cmd/memtest-cmd.py
git.list_refs: change arg from refnames to patterns
[bup.git] / cmd / memtest-cmd.py
index 65778b73de374829c1a8eb30e7b74a0c61bac60a..c4c531e22928c5c95cf03f6d75adaa3a7edd1c96 100755 (executable)
@@ -4,12 +4,16 @@ bup_python="$(dirname "$0")/bup-python" || exit $?
 exec "$bup_python" "$0" ${1+"$@"}
 """
 # end of bup preamble
+
 import sys, re, struct, time, resource
+
 from bup import git, bloom, midx, options, _helpers
-from bup.helpers import *
+from bup.helpers import handle_ctrl_c
+
 
 handle_ctrl_c()
 
+
 _linux_warned = 0
 def linux_memstat():
     global _linux_warned
@@ -17,7 +21,7 @@ def linux_memstat():
     d = {}
     try:
         f = open('/proc/self/status')
-    except IOError, e:
+    except IOError as e:
         if not _linux_warned:
             log('Warning: %s\n' % e)
             _linux_warned = 1