Merge "Add SSH key syncing to user sync"
diff --git a/update_gerrit_users.py b/update_gerrit_users.py
index 9389829..68ac448 100755
--- a/update_gerrit_users.py
+++ b/update_gerrit_users.py
@@ -24,6 +24,11 @@
from datetime import datetime
+# There is a bug (810019) somewhere deep which causes pkg_resources
+# to bitch if it's imported after argparse. launchpadlib imports it,
+# so if we head it off at the pass, we can skip cronspam
+import pkg_resources
+
import StringIO
import ConfigParser
import argparse