aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-07-07 07:33:59 +0200
committerMattias Andrée <maandree@kth.se>2016-07-07 07:33:59 +0200
commit365cee12526feead1472e0d6dc157f846536e607 (patch)
tree74da7f2813bf9806cfb0236d80cafb0241154bdd
parentm (diff)
downloadblue-365cee12526feead1472e0d6dc157f846536e607.tar.gz
blue-365cee12526feead1472e0d6dc157f846536e607.tar.bz2
blue-365cee12526feead1472e0d6dc157f846536e607.tar.xz
Reject -L combined with -u
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rwxr-xr-xblue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/blue.py b/blue.py
index 436f2cb..a10e3e8 100755
--- a/blue.py
+++ b/blue.py
@@ -91,7 +91,7 @@ while i < n:
i += 1
else:
break
-if i != n or (human and unix):
+if i != n or (human and unix) or (local and unix):
usage()