changeset 1309:b621e5da03e1 stable

evolve: add missing import (caught by pylint)
author Laurent Charignon <lcharignon@fb.com>
date Thu, 30 Apr 2015 14:34:05 -0700
parents 676d88a82d4a
children f032d93506d8
files hgext/evolve.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/evolve.py	Thu Apr 30 14:47:01 2015 -0700
+++ b/hgext/evolve.py	Thu Apr 30 14:34:05 2015 -0700
@@ -28,6 +28,8 @@
 from StringIO import StringIO
 import struct
 import re
+import socket
+import errno
 sha1re = re.compile(r'\b[0-9a-f]{6,40}\b')
 
 import mercurial