diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-08-29 15:35:49 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-08-29 15:35:49 +0200 |
| commit | 896c0ad16ce3f372fbe7177751d9c0e93ea0feb3 (patch) | |
| tree | a35e6b7765a0aaff925f026d2d0c9a583b579f64 /DistUpgrade/dist-upgrade.py | |
| parent | 9e4f0c608d5ecc90c4a5f59c7e24505f61314a2d (diff) | |
| download | python-apt-896c0ad16ce3f372fbe7177751d9c0e93ea0feb3.tar.gz | |
* DistUpgrade/DistUpgradeControler.py:
- fix a bunch of errors
Diffstat (limited to 'DistUpgrade/dist-upgrade.py')
| -rwxr-xr-x | DistUpgrade/dist-upgrade.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py index 861f561e..c7a2a7b7 100755 --- a/DistUpgrade/dist-upgrade.py +++ b/DistUpgrade/dist-upgrade.py @@ -15,7 +15,7 @@ if __name__ == "__main__": (options, args) = parser.parse_args() if not os.path.exists("/var/log/dist-upgrade"): - os.path.mkdir("/var/log/dist-upgrade") + os.mkdir("/var/log/dist-upgrade") logging.basicConfig(level=logging.DEBUG, filename="/var/log/dist-upgrade/main.log", format='%(asctime)s %(levelname)s %(message)s', |
