DICT.py: Get rid of tabs (coding style)
authorMikael Berthe <mikael@lilotux.net>
Thu, 03 May 2007 19:32:28 +0200
changeset 33 adf562e77977
parent 32 dcb1b0459f1c
child 34 535d03a56f9d
DICT.py: Get rid of tabs (coding style)
modules/DICT.py
--- a/modules/DICT.py	Thu May 03 19:29:40 2007 +0200
+++ b/modules/DICT.py	Thu May 03 19:32:28 2007 +0200
@@ -19,12 +19,11 @@
         self._server = server
         self._port = port
         self._conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
-        self._conn.connect((socket.gethostbyname(self._server),
-                              self._port))
+        self._conn.connect((socket.gethostbyname(self._server), self._port))
         self._conn.recv(1024) # eat welcome message
 
-#          if identify:
-#              self._send("CLIENT dict.py/0.00", 1)
+#        if identify:
+#            self._send("CLIENT dict.py/0.00", 1)
 
     def get_databases(self):
         return map(split_and_remove_quotes,
@@ -112,3 +111,5 @@
     #pprint(dict.get_strategies())
     pprint(dict.get_definition(word))
     #pprint(dict.get_words(word))
+
+# vim:set et sts=4: