largefiles: use 'default' path for pulling largefiles, not 'default-push'
The put parameter has been unused since day 0.
--- a/hgext/largefiles/basestore.py Fri Jan 23 06:28:28 2015 +0100
+++ b/hgext/largefiles/basestore.py Fri Jan 23 18:41:37 2015 +0100
@@ -181,8 +181,10 @@
lfpullsource = getattr(repo, 'lfpullsource', None)
if lfpullsource:
path = ui.expandpath(lfpullsource)
+ elif put:
+ path = ui.expandpath('default-push', 'default')
else:
- path = ui.expandpath('default-push', 'default')
+ path = ui.expandpath('default')
# ui.expandpath() leaves 'default-push' and 'default' alone if
# they cannot be expanded: fallback to the empty string,