From f2940b5d7d0f2256a1ad68460cc7b92abbd782a4 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Wed, 11 Dec 2013 09:19:30 +0530 Subject: src/gns-deb-diff.py: modded the raw_input statements --- src/gns-deb-diff.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/gns-deb-diff.py b/src/gns-deb-diff.py index d2d7bf0..79b79d0 100644 --- a/src/gns-deb-diff.py +++ b/src/gns-deb-diff.py @@ -68,7 +68,7 @@ def get_paraphernalia(): """ global bzr_base_url, local_dir, pkgs_file - stdin = raw_input("> url of packages location: ").strip() + stdin = raw_input(">> remote bzr url: ").strip() if (len(stdin) != 0): bzr_base_url = stdin @@ -76,11 +76,11 @@ def get_paraphernalia(): bzr_base_url = "bzr://bzr.savannah.gnu.org/gnewsense/packages-parkes" # directory under which the bzr branches has to be stored. - local_dir = raw_input("> local directory: ") + local_dir = raw_input(">> local directory to store bzr branch: ").strip() # absolute path to file which contains the packages names. # one package per line. - stdin = raw_input("> packages list file (absolute path): ").strip() + stdin = raw_input(">> packages list file (absolute path): ").strip() if (len(stdin) != 0): pkgs_file = stdin -- cgit v1.2.3