changeset 435:d81eb79e4f4c

havepatch: sort stdlib imports
author Augie Fackler <raf@durin42.com>
date Sun, 18 Jun 2017 22:45:24 -0400
parents 2b5d868f81ac
children 97f12f43f73b
files unixSoft/bin/havepatch
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/unixSoft/bin/havepatch
+++ b/unixSoft/bin/havepatch
@@ -1,9 +1,9 @@
 #!/usr/bin/env python
 """Detect if a patch is already applied in a Mercurial repository."""
-import sys
-import subprocess
 import os
 import re
+import subprocess
+import sys
 
 from mercurial import util