From 4aae6fb8f6abb6539bada70ea18d83601c267ec3 Mon Sep 17 00:00:00 2001 From: Will Woods Date: Tue, 18 Sep 2007 11:47:18 -0400 Subject: Minor stylistic change --- bugzilla | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugzilla b/bugzilla index 0597b59..3b6de1b 100755 --- a/bugzilla +++ b/bugzilla @@ -155,7 +155,7 @@ if __name__ == '__main__': # ex.: {'email1':'foo@bar.com','emailcc1':True} q['email%i' % email_count] = i q['email%s%i' % (a,email_count)] = True - email_count = email_count + 1 + email_count += 1 else: q[a] = i buglist = bz.query(q) -- cgit