Cleanup global module configuration.
authorW. Trevor King <wking@tremily.us>
Thu, 4 Oct 2012 12:33:32 +0000 (08:33 -0400)
committerW. Trevor King <wking@tremily.us>
Thu, 4 Oct 2012 12:36:01 +0000 (08:36 -0400)
rss2email.py

index 216c13dd5d8a30775c8a369b13283020726f717f..3919bd742c299d146c48259cbee8d8fcb4682949 100755 (executable)
@@ -51,20 +51,20 @@ import urllib.request as _urllib_request
 import xml.dom.minidom as _minidom
 import xml.sax.saxutils as _saxutils
 
-unix = 0
+UNIX = False
 try:
     import fcntl as _fcntl
-# A pox on SunOS file locking methods
-    if (sys.platform.find('sunos') == -1):
-        unix = 1
+    # A pox on SunOS file locking methods
+    if 'sunos' not in sys.platform:
+        UNIX = True
 except:
     pass
 
 import feedparser as _feedparser
 import html2text as _html2text
 
-hash = hashlib.md5
-urllib2.install_opener(urllib2.build_opener())
+
+_urllib_request.install_opener(_urllib_request.build_opener())
 
 
 class Config (_configparser.ConfigParser):