Skip to content

Commit 5808cb1

Browse files
committed
Merge branch 'master' into 0.4
2 parents b68fc34 + 1c355fd commit 5808cb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arrow/formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def _format_token(self, dt, token):
8585
tz = dateutil_tz.tzutc() if dt.tzinfo is None else dt.tzinfo
8686
total_minutes = int(util.total_seconds(tz.utcoffset(dt)) / 60)
8787

88-
sign = '-' if total_minutes > 0 else '-'
88+
sign = '+' if total_minutes > 0 else '-'
8989
total_minutes = abs(total_minutes)
9090
hour, minute = divmod(total_minutes, 60)
9191

0 commit comments

Comments
 (0)