# # # patch "plain.py" # from [9962d7810dd760ae45ca36c938e86f78cc0dfd01] # to [39b7582fe878d6f408316a87589f034233ff95eb] # ============================================================ --- plain.py 9962d7810dd760ae45ca36c938e86f78cc0dfd01 +++ plain.py 39b7582fe878d6f408316a87589f034233ff95eb @@ -49,7 +49,7 @@ def getDefaultUrl(): try: - fh = file(".mtndumboptions","r") + fh = file(".mtnplain","r") try: for stanza in monotone.basic_io_parser(fh.read()): for k,v in stanza: @@ -62,7 +62,7 @@ return None def setDefaultUrl(url): - f = file(".mtndumboptions","w+") + f = file(".mtnplain","w+") print >> f, 'repository "%s"' % url f.close() return