diff options
author | Chris Ball <cjb@laptop.org> | 2009-07-02 14:00:04 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2009-07-02 14:00:04 -0400 |
commit | 64f62aa2bb841c483e8cb2b663434b3ad3038f4c (patch) | |
tree | 644cfa2fef611ad265d3116ac83026bf0181f7c1 /libbe/darcs.py | |
parent | 21a0bb0ae113ad9eaa6d94d36c8d0e5ca8508d7f (diff) | |
parent | a536332660c8374e2000541e2db5ad6cea3b0e5e (diff) | |
download | bugseverywhere-64f62aa2bb841c483e8cb2b663434b3ad3038f4c.tar.gz |
Pull darcs fix, copyright updates from W. Trevor King
Diffstat (limited to 'libbe/darcs.py')
-rw-r--r-- | libbe/darcs.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libbe/darcs.py b/libbe/darcs.py index a3b52b6..43af99a 100644 --- a/libbe/darcs.py +++ b/libbe/darcs.py @@ -1,5 +1,4 @@ -# Copyright (C) 2007 Chris Ball <chris@printf.net>, -# 2009 W. Trevor King <wking@drexel.edu> +# Copyright (C) 2009 W. Trevor King <wking@drexel.edu> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -131,8 +130,7 @@ class Darcs(RCS): if revision==None: RCS._rcs_duplicate_repo(self, directory, revision) else: - self._u_invoke_client("put", "--no-pristine-tree", - "--to-patch", revision, directory) + self._u_invoke_client("put", "--to-patch", revision, directory) def _rcs_commit(self, commitfile): id = self.get_user_id() if '@' not in id: |