[Python-apps-commits] r4258 - in packages/autokey/trunk/debian/patches (1 file)

ffm-guest at users.alioth.debian.org ffm-guest at users.alioth.debian.org
Sun Dec 6 19:43:07 UTC 2009


    Date: Sunday, December 6, 2009 @ 19:43:06
  Author: ffm-guest
Revision: 4258

Fix syntax error in patch added in last commit.

Modified:
  packages/autokey/trunk/debian/patches/1000-daemon-fix.dpatch

Modified: packages/autokey/trunk/debian/patches/1000-daemon-fix.dpatch
===================================================================
--- packages/autokey/trunk/debian/patches/1000-daemon-fix.dpatch	2009-12-06 19:40:37 UTC (rev 4257)
+++ packages/autokey/trunk/debian/patches/1000-daemon-fix.dpatch	2009-12-06 19:43:06 UTC (rev 4258)
@@ -16,7 +16,7 @@
  		except OSError, err:
 -			err = str(err)
 -			if err.find("No such process") > 0:
-+			if err.errno = 3:
++			if err.errno == 3:
  				if os.path.exists(self.pidfile):
  					os.remove(self.pidfile)
  			else:




More information about the Python-apps-commits mailing list