Skip to content

Commit f8f3a8a

Browse files
author
Jianhui Harold
authored
{Monitor} fix typo (Azure#14423)
1 parent 0421019 commit f8f3a8a

File tree

1 file changed

+1
-1
lines changed
  • src/azure-cli/azure/cli/command_modules/monitor

1 file changed

+1
-1
lines changed

src/azure-cli/azure/cli/command_modules/monitor/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def timezone_offset_type(value):
3939
value = '+0{}'.format(hour)
4040
elif hour >= 10:
4141
value = '+{}'.format(hour)
42-
elif -1 < hour < 0:
42+
elif -10 < hour < 0:
4343
value = '-0{}'.format(-1 * hour)
4444
else:
4545
value = str(hour)

0 commit comments

Comments
 (0)