sed -i 's/!= None/is not None/g' *.py

This commit is contained in:
Daniel Martí 2013-10-13 00:03:57 +02:00
parent 47cad8fca7
commit ded019291e
2 changed files with 8 additions and 8 deletions

View file

@ -100,9 +100,9 @@ def main():
sys.exit(1) sys.exit(1)
finally: finally:
#Disconnect #Disconnect
if ftp != None: if ftp is not None:
ftp.close() ftp.close()
if ssh != None: if ssh is not None:
ssh.close() ssh.close()
# Process logs # Process logs

View file

@ -458,7 +458,7 @@ def make_index(apps, apks, repodir, archive, categories):
repoel.setAttribute("url", repo_url) repoel.setAttribute("url", repo_url)
addElement('description', repo_description, doc, repoel) addElement('description', repo_description, doc, repoel)
if repo_keyalias != None: if repo_keyalias is not None:
# Generate a certificate fingerprint the same way keytool does it # Generate a certificate fingerprint the same way keytool does it
# (but with slightly different formatting) # (but with slightly different formatting)
@ -532,13 +532,13 @@ def make_index(apps, apks, repodir, archive, categories):
addElement('web', app['Web Site'], doc, apel) addElement('web', app['Web Site'], doc, apel)
addElement('source', app['Source Code'], doc, apel) addElement('source', app['Source Code'], doc, apel)
addElement('tracker', app['Issue Tracker'], doc, apel) addElement('tracker', app['Issue Tracker'], doc, apel)
if app['Donate'] != None: if app['Donate'] is not None:
addElement('donate', app['Donate'], doc, apel) addElement('donate', app['Donate'], doc, apel)
if app['Bitcoin'] != None: if app['Bitcoin'] is not None:
addElement('bitcoin', app['Bitcoin'], doc, apel) addElement('bitcoin', app['Bitcoin'], doc, apel)
if app['Litecoin'] != None: if app['Litecoin'] is not None:
addElement('litecoin', app['Litecoin'], doc, apel) addElement('litecoin', app['Litecoin'], doc, apel)
if app['FlattrID'] != None: if app['FlattrID'] is not None:
addElement('flattr', app['FlattrID'], doc, apel) addElement('flattr', app['FlattrID'], doc, apel)
# These elements actually refer to the current version (i.e. which # These elements actually refer to the current version (i.e. which
@ -600,7 +600,7 @@ def make_index(apps, apks, repodir, archive, categories):
of.write(output) of.write(output)
of.close() of.close()
if repo_keyalias != None: if repo_keyalias is not None:
if not options.quiet: if not options.quiet:
print "Creating signed index." print "Creating signed index."