From 7039cc0817be85c1e6c03ae1191d176ed241d2d7 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 14 Jul 2010 17:42:52 +0000 Subject: [PATCH] Fix nitpick complaint on r61809 --- includes/zhtable/Makefile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/zhtable/Makefile.py b/includes/zhtable/Makefile.py index 26e229df69..88c6a63529 100644 --- a/includes/zhtable/Makefile.py +++ b/includes/zhtable/Makefile.py @@ -5,7 +5,7 @@ import tarfile, zipfile import os, re, shutil, sys, platform pyversion = platform.python_version() -islinux = platform.system().lower() == 'linux' or False +islinux = platform.system().lower() == 'linux' if pyversion[:3] in ['2.5', '2.6', '2.7']: import urllib as urllib_request -- 2.20.1