From 5fef3f2ae3dd27eda5130a3adc9e68b32e828d48 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 3 Feb 2009 12:49:51 +0200 Subject: Reformat. --- errno | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'errno') diff --git a/errno b/errno index 2a39e2f..d801faa 100755 --- a/errno +++ b/errno @@ -4,8 +4,12 @@ import errno import os import sys -toname = dict((str(getattr(errno, x)), x) for x in dir(errno) if x.startswith("E")) -tocode = dict((x, getattr(errno, x)) for x in dir(errno) if x.startswith("E")) +toname = dict((str(getattr(errno, x)), x) + for x in dir(errno) + if x.startswith("E")) +tocode = dict((x, getattr(errno, x)) + for x in dir(errno) + if x.startswith("E")) for arg in sys.argv[1:]: if arg in tocode: -- cgit v1.2.1