##// END OF EJS Templates
gist cli should convert given paths to basenames
marcink -
r3845:0a023c38 beta
parent child Browse files
Show More
@@ -119,7 +119,7 b' def _run(argv):'
119 if gist_content and '\0' in gist_content:
119 if gist_content and '\0' in gist_content:
120 raise Exception('Error: binary files upload is not possible')
120 raise Exception('Error: binary files upload is not possible')
121
121
122 filename = args.filename or filename
122 filename = os.path.basename(args.filename or filename)
123 if gist_content:
123 if gist_content:
124 files = {
124 files = {
125 filename: {
125 filename: {
General Comments 0
You need to be logged in to leave comments. Login now