Skip to content

Commit 5674cad

Browse files
committed
Merge branch 'akstrfn-master'
2 parents 413b83f + bc77b53 commit 5674cad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ftplugin/org.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ for p in vim.eval("&runtimepath").split(','):
115115
from orgmode._vim import ORGMODE, insert_at_cursor, get_user_input, date_to_str
116116
ORGMODE.start()
117117

118+
from Date import Date
118119
import datetime
119120
EOF
120121

@@ -152,7 +153,6 @@ fun CalendarAction(day, month, year, week, dir)
152153
let msg = printf("Inserting %s | Modify date", g:org_timestamp)
153154
exe s:py_version . "modifier = get_user_input('" . msg . "')"
154155
" change date according to user input
155-
exe s:py_version . "print modifier"
156156
exe s:py_version . "newdate = Date._modify_time(selected_date, modifier)"
157157
exe s:py_version . "newdate = date_to_str(newdate)"
158158
" close Calendar

ftplugin/orgmode/plugins/TagsProperties.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def find_tags(cls):
108108
# user pressed <Esc> abort any further processing
109109
return
110110

111-
heading.tags = [x for x in u_decode(tags).strip().strip(u':').split(u':') if x.strip() != u'']
111+
tags = [x for x in u_decode(tags).strip().strip(u':').split(u':') if x.strip() != u'']
112112
if tags:
113113
searchstring = u'\\('
114114
first = True

0 commit comments

Comments
 (0)