Skip to content

Commit dff9246

Browse files
committed
emailsettings_pop_settings.py: Fix syntax error
Original patch author is Harvey Falcic <[email protected]>.
1 parent b0f6855 commit dff9246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/apps/emailsettings_pop_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def main():
131131
raise PopSettingsException('Invalid consumer credentials')
132132
elif e.status == 503:
133133
raise PopSettingsException('Server busy')
134-
else e.status == 500:
134+
elif e.status == 500:
135135
raise PopSettingsException('Internal server error')
136136
else:
137137
raise PopSettingsException('Unknown error')

0 commit comments

Comments
 (0)