allura
修訂 | 19e3c413caa89e86066b346f24a81bc0ad93ca8c (tree) |
---|---|
時間 | 2012-07-18 23:53:17 |
作者 | Dave Brondsema <dbrondsema@geek...> |
Commiter | Dave Brondsema |
[#4556] clarify wording in clone failure emails
@@ -55,7 +55,7 @@ def clone( | ||
55 | 55 | subject=u'SourceForge Repo Clone Failure', |
56 | 56 | message_id=h.gen_message_id(), |
57 | 57 | text=u''.join([ |
58 | - u'Clone of repo %s in project %s from %s failed.\n', | |
58 | + u'Forking/cloning repo %s in project %s from %s failed.\n', | |
59 | 59 | u'\n', |
60 | 60 | u'%s', |
61 | 61 | ]) % (c.app.config.options.mount_point, c.project.shortname, cloned_from_url, traceback.format_exc())) |
@@ -67,7 +67,7 @@ def clone( | ||
67 | 67 | subject=u'SourceForge Repo Clone Failed', |
68 | 68 | message_id=h.gen_message_id(), |
69 | 69 | text=u''.join([ |
70 | - u'Clone of repo %s in project %s from %s failed. ', | |
70 | + u'Forking/cloning repo %s in project %s from %s failed. ', | |
71 | 71 | u'The SourceForge engineering team has been notified.\n', |
72 | 72 | ]) % (c.app.config.options.mount_point, c.project.shortname, cloned_from_url)) |
73 | 73 |