Commit d482c663 authored by Keegi's avatar Keegi

Remove diagnostic message about saving data into .pronsolerc

parent c82ed32c
...@@ -391,10 +391,10 @@ class pronsole(cmd.Cmd): ...@@ -391,10 +391,10 @@ class pronsole(cmd.Cmd):
os.rename(rci.name,rci.name+"~old") os.rename(rci.name,rci.name+"~old")
rco.close() rco.close()
os.rename(rco.name,self.rc_filename) os.rename(rco.name,self.rc_filename)
if definition != "": #if definition != "":
print "Saved '"+key+"' to '"+self.rc_filename+"'" # print "Saved '"+key+"' to '"+self.rc_filename+"'"
else: #else:
print "Removed '"+key+"' from '"+self.rc_filename+"'" # print "Removed '"+key+"' from '"+self.rc_filename+"'"
except Exception, e: except Exception, e:
print "Saving failed for",key+":",str(e) print "Saving failed for",key+":",str(e)
finally: finally:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment