summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2013-12-11 09:19:30 +0530
committerrsiddharth <rsiddharth@ninthfloor.org>2013-12-11 09:19:30 +0530
commitf2940b5d7d0f2256a1ad68460cc7b92abbd782a4 (patch)
tree44a971db24c4a8297d4a4a454cc20a42067826ce /src
parentc049169cec3a12feb0e30c6c8b79e70df126890d (diff)
src/gns-deb-diff.py: modded the raw_input statements
Diffstat (limited to 'src')
-rw-r--r--src/gns-deb-diff.py6
1 files changed, 3 insertions, 3 deletions
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