# HG changeset patch # User Wolfgang Rosenauer # Date 1301315786 -7200 # Node ID 00223d208653ac295869a1a890537487f396700a # Parent 28bc8862e4e428ca3149e0ccb2bb50594cacbfa0 11.4 configuration null handling for some cases diff -r 28bc8862e4e4 -r 00223d208653 upload_buildsymbols.py --- a/upload_buildsymbols.py Mon Nov 22 16:03:00 2010 +0100 +++ b/upload_buildsymbols.py Mon Mar 28 14:36:26 2011 +0200 @@ -102,7 +102,7 @@ for k, v in datanew.iteritems(): if dataold is not None: - if dataold[k] == v: + if dataold.has_key(k) and dataold[k] == v: continue # different version, save in updates list @@ -127,9 +127,9 @@ baseurl = "http://download.opensuse.org/" archs = [ "i586", "x86_64"] -repos = [ "distribution/11.3/repo/oss/suse/", "update/11.3/rpm/" ] +repos = [ "distribution/11.3/repo/oss/suse/", "update/11.3/rpm/", "distribution/11.4/repo/oss/suse/", "update/11.4/rpm/" ] bsrepos = [ "repositories/mozilla/", "repositories/mozilla:/beta/" ] -bsdists = [ "openSUSE_11.3", "openSUSE_11.2", "openSUSE_11.1" ] +bsdists = [ "openSUSE_11.4", "openSUSE_11.3", "openSUSE_11.2" ] SSHCONF = "mozsymbols" # product repos