c93b803b40
Also patch a bug in the command line interface which prevented "trac-admin <env> download add <file>" from working. I'm pretty sure it hadn't worked in several years.
15 lines
373 B
Python
15 lines
373 B
Python
|
|
$FreeBSD$
|
|
|
|
--- tracdownloads/consoleadmin.py.orig
|
|
+++ tracdownloads/consoleadmin.py
|
|
@@ -122,7 +122,8 @@
|
|
self.log.debug(download)
|
|
|
|
# Upload file to DB and file storage.
|
|
- api.store_download(context, download, file)
|
|
+ api._add_download(context, download, file)
|
|
+
|
|
|
|
# Close input file and commit changes in DB.
|
|
file.close()
|