From a6ae3103a8ec717977ea8d665778bde3ba41eab2 Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Wed, 16 Dec 2009 10:25:39 +0100 Subject: Fix typo. --- src/dh_xul-ext | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/dh_xul-ext') diff --git a/src/dh_xul-ext b/src/dh_xul-ext index e9c4276..4446966 100755 --- a/src/dh_xul-ext +++ b/src/dh_xul-ext @@ -45,16 +45,16 @@ def get_xul_apps(): if line == "\n": if xul_appid is not None: # find duplicates and keep older version - found_duclicate = False + found_duplicate = False for i in xrange(len(packages) - 1, -1, -1): if packages[i][0] == package_name: command = ['dpkg', '--compare-versions', version, 'lt', packages[i][1]] if subprocess.call(command) == 0: del packages[i] else: - found_duclicate = True + found_duplicate = True break - if not found_duclicate: + if not found_duplicate: packages.append([package_name, version, xul_appid, xul_eol]) package_name = None version = None -- cgit v1.2.3