From c027ab9fbc1a8e8c9e76bcd123df1ad7696307c2 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Tue, 11 Mar 2014 17:39:22 +0100 Subject: test: Convert to Python 3 Change raw_input() to input() and unicode to str. This is *not* compatible with Python 2. Update the hashbangs to run with Python 3. --- test/test-cbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test-cbs') diff --git a/test/test-cbs b/test/test-cbs index 13cdd80a..a5cec065 100755 --- a/test/test-cbs +++ b/test/test-cbs @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 import dbus import dbus.mainloop.glib @@ -78,7 +78,7 @@ def set_topics(cbs): invalidData = False; index = 0 - topics = raw_input('Enter the topic ID(s) you want to register to: ') + topics = input('Enter the topic ID(s) you want to register to: ') while index < len(topics): if topics[index] == ',' or topics[index] == '-': -- cgit v1.2.3