summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'common.py')
-rw-r--r--common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.py b/common.py
index 578b0e0..89e4996 100644
--- a/common.py
+++ b/common.py
@@ -1,7 +1,7 @@
# Copyright 2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-import cStringIO
+import io
import datetime
import getpass
import re
@@ -53,7 +53,7 @@ def detect_cpvs(text):
def get_input(prompt):
- return raw_input(prompt)
+ return input(prompt)
def login(bugzilla):