Public » Kiln Backup
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

cleanup prompts

Changeset 41b03cb0da0b

Parent e9e9b5a89b99

by Profile picture of Benjamin PollackBenjamin Pollack

Changes to one file · Browse files at 41b03cb0da0b Showing diff from parent e9e9b5a89b99 Diff from another changeset...

Change 1 of 2 Show Entire File kilnbackup.py Stacked
 
34
35
36
37
38
 
39
40
41
 
49
50
51
52
53
54
 
 
 
55
56
57
 
34
35
36
 
 
37
38
39
40
 
48
49
50
 
 
 
51
52
53
54
55
56
@@ -34,8 +34,7 @@
 settings = dict(config.items('kiln'))    def prompt(msg): - print(msg) - value = sys.stdin.readline().strip() + value = raw_input(msg)   if not value:   sys.exit()   return value @@ -49,9 +48,9 @@
  config.set(section, option, value)   settings[option] = value   -check("kiln", "server", "Enter the name of the fogbugz server (eg https://company.fogbugz.com)") -check("kiln", "username", "Username:") -check("kiln", "password", "Password:") +check("kiln", "server", "FogBugz URL (e.g. https://company.fogbugz.com): ") +check("kiln", "username", "Username: ") +check("kiln", "password", "Password: ")    if save:   f = open("kilnbackup.cfg", "w")