Skip to content
This repository has been archived by the owner on Oct 31, 2021. It is now read-only.

Commit

Permalink
Timezone will be the last module to implement.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrille Pontvieux committed Feb 6, 2013
1 parent cb19ed8 commit bb56d22
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/salix-live-installer/timezone.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,21 @@
# -*- coding: utf-8 -*-
# vim: set et ai sta sw=2 ts=2 tw=0:
"""
Functions to handle timezones
Functions to handle timezones:
- listTimeZones
- listTZContinents
- listTZCountries
- getDefaultTimeZone
- setDefaultTimeZone
"""
import os
import glob
import re
import fileinput
import sys
from execute import *

# Unit test
if __name__ == '__main__':
from assertPlus import *
checkRoot()

0 comments on commit bb56d22

Please sign in to comment.